Files
kimai2/tests/AppBundle/Repository/Query/VisibilityTraitImplementation.php
Kevin Papst 03896e3a1a added toolbar to user screen #56 (#66)
* added toolbar to user screen # 56
* added filter for user role in user admin toolbar # 56
* added unit tests for queries # 56
2018-01-09 17:15:07 +01:00

24 lines
531 B
PHP

<?php
/*
* This file is part of the Kimai package.
*
* (c) Kevin Papst <kevin@kevinpapst.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace KimaiTest\AppBundle\Repository\Query;
use AppBundle\Repository\Query\VisibilityInterface;
use AppBundle\Repository\Query\VisibilityTrait;
/**
* @author Kevin Papst <kevin@kevinpapst.de>
*/
class VisibilityTraitImplementation implements VisibilityInterface
{
use VisibilityTrait;
}