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'
|
|
|
|
|
];
|
|
|
|
|
}
|
2017-04-24 11:38:19 +00:00
|
|
|
}
|