ORIENT/tests/fixtures/plugins/october/sample/Plugin.php

16 lines
346 B
PHP

<?php namespace October\Sample;
use System\Classes\PluginBase;
class Plugin extends PluginBase
{
public function pluginDetails()
{
return [
'name' => 'October Sample Plugin',
'description' => 'Sample plugin used by unit tests.',
'author' => 'Alexey Bobkov, Samuel Georges'
];
}
}