| 1 | <?php |
||
| 25 | class SphinxDaemon extends Command |
||
| 26 | { |
||
| 27 | /** |
||
| 28 | * The name and signature of the console command. |
||
| 29 | * @var string |
||
| 30 | */ |
||
| 31 | protected $signature = 'sphinx:run'; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * The console command description. |
||
| 35 | * @var string |
||
| 36 | */ |
||
| 37 | protected $description = ''; |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @param Repository $conf |
||
| 41 | */ |
||
| 42 | public function handle(Repository $conf) |
||
| 52 | } |
||
| 53 |