for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* API for Billing
*
* @link https://github.com/hiqdev/billing-hiapi
* @package billing-hiapi
* @license BSD-3-Clause
* @copyright Copyright (c) 2017-2018, HiQDev (http://hiqdev.com/)
*/
namespace hiqdev\billing\hiapi\controllers;
use hiqdev\php\billing\bill\Bill;
class BillController extends \hiapi\controllers\BaseController
{
protected $entityClass = Bill::class;
public function commands()
return array_merge(parent::commands(), [
'search' => [
'class' => \hiapi\commands\SearchCommand::class,
],
]);
}