2021-12-08 23:58:28 +00:00
|
|
|
<?php // "name":"Access databases through PDO", "author":"Noccy"
|
|
|
|
|
|
|
|
namespace SparkPlug\Com\Noccy\Pdo;
|
|
|
|
|
|
|
|
use SparkPlug;
|
|
|
|
|
|
|
|
class PdoPlugin extends SparkPlug {
|
|
|
|
public function load()
|
|
|
|
{
|
2021-12-23 14:31:26 +00:00
|
|
|
register_command(new Commands\PdoQueryCommand());
|
|
|
|
register_command(new Commands\PdoExecCommand());
|
2021-12-08 23:58:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
register_plugin("com.noccy.pdo", new PdoPlugin);
|
|
|
|
register_resource_type("pdo", PdoResource::class);
|