Added PDO shell plugin

This commit is contained in:
2021-12-16 02:39:52 +01:00
parent 1125ccb82d
commit 16753e1892
4 changed files with 270 additions and 0 deletions

View File

@ -0,0 +1,14 @@
<?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);