ORIENT/tests/fixtures/plugins/database/tester/Plugin.php

17 lines
367 B
PHP
Raw Normal View History

2015-09-09 09:28:47 +00:00
<?php namespace Database\Tester;
use System\Classes\PluginBase;
class Plugin extends PluginBase
{
public function pluginDetails()
{
return [
'name' => 'Database Tester Plugin',
'description' => 'Plugin for loading tests that involve the database.',
'author' => 'Alexey Bobkov, Samuel Georges'
];
}
}