php-hotfix/src/Hotfix/Loader/GistLoader.php
Christopher Vagnetoft c378d62ccb Initial commit
2016-04-19 15:54:03 +02:00

14 lines
224 B
PHP

<?php
namespace NoccyLabs\Hotfix\Hotfix\Loader;
class GistLoader implements LoaderInterface
{
public function load($fix)
{
if (!preg_match('/^gist\:/i', $fix)) {
return false;
}
}
}