Files
kimai2/tests/Plugin/Fixtures/TestPlugin.php
2019-04-08 18:38:56 +02:00

32 lines
531 B
PHP

<?php
/*
* This file is part of the Kimai time-tracking app.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Tests\Plugin\Fixtures;
use App\Plugin\PluginInterface;
class TestPlugin implements PluginInterface
{
/**
* @return string
*/
public function getName()
{
return 'TestPlugin';
}
/**
* @return string
*/
public function getPath()
{
return __DIR__;
}
}