for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace hiapi\commands;
class SearchCommand extends BaseCommand
{
public $select;
public $where;
public $limit;
public function rules()
return [
['select', 'safe'],
['where', 'safe'],
['limit', 'number', 'max' => 100],
];
}