Files
kimai2/src/Plugin/PluginInterface.php
2019-04-08 18:38:56 +02:00

24 lines
390 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\Plugin;
interface PluginInterface
{
/**
* @return string
*/
public function getName();
/**
* @return string
*/
public function getPath();
}