Files
kimai/src/Repository/Query/CustomerQuery.php
2019-07-09 16:34:11 +02:00

22 lines
433 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\Repository\Query;
/**
* Can be used for advanced queries with the: CustomerRepository
*/
class CustomerQuery extends VisibilityQuery
{
public function __construct()
{
$this->setOrderBy('name');
}
}