17 lines
411 B
PHP
Raw Normal View History

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