14 lines
232 B
PHP
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;
|
||
|
}
|
||
|
}
|
||
|
}
|