ORIENT/tests/fixtures/plugins/testvendor/test/Plugin.php

17 lines
345 B
PHP

<?php namespace TestVendor\Test;
use System\Classes\PluginBase;
class Plugin extends PluginBase
{
public function pluginDetails()
{
return [
'name' => 'Another Test Plugin',
'description' => 'Test plugin used by unit tests with the same name.',
'author' => 'Test Vendor'
];
}
}