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

14 lines
232 B
PHP

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