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

14 lines
232 B
PHP
Raw Normal View History

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