| 1 | <?php namespace Anomaly\Streams\Platform\Search\Command; |
||
| 9 | class CheckEntryIndex |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * The stream instance. |
||
| 13 | * |
||
| 14 | * @var StreamInterface |
||
| 15 | */ |
||
| 16 | protected $stream; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Create a new CheckCreateIndex instance. |
||
| 20 | * |
||
| 21 | * @param StreamInterface $stream [description] |
||
| 22 | */ |
||
| 23 | public function __construct(StreamInterface $stream) |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Handle the command. |
||
| 30 | * |
||
| 31 | * @param Application $application |
||
| 32 | */ |
||
| 33 | public function handle(Application $application, Filesystem $files) |
||
| 67 | } |
||
| 68 |