15 lines
309 B
PHP
15 lines
309 B
PHP
|
<?php // "name":"Interactive PDO Shell", "author":"Noccy"
|
||
|
|
||
|
namespace SparkPlug\Com\Noccy\Pdo\Shell;
|
||
|
|
||
|
use SparkPlug;
|
||
|
|
||
|
class PdoShellPlugin extends SparkPlug {
|
||
|
public function load()
|
||
|
{
|
||
|
register_command(new PdoShellCommand());
|
||
|
}
|
||
|
}
|
||
|
|
||
|
register_plugin("com.noccy.pdo.shell", new PdoShellPlugin);
|