php-hotfix/src/Hotfix/Loader/GistLoader.php

14 lines
224 B
PHP
Raw Normal View History

2016-04-19 13:54:03 +00:00
<?php
namespace NoccyLabs\Hotfix\Hotfix\Loader;
class GistLoader implements LoaderInterface
{
public function load($fix)
{
if (!preg_match('/^gist\:/i', $fix)) {
return false;
}
}
}