| 1 | <?php |
||
| 19 | abstract class AbstractIndexResetEvent extends AbstractIndexEvent |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var bool |
||
| 23 | */ |
||
| 24 | protected $force; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var bool |
||
| 28 | */ |
||
| 29 | private $populating; |
||
| 30 | |||
| 31 | 13 | public function __construct(string $index, bool $populating, bool $force) |
|
| 38 | |||
| 39 | 4 | public function isForce(): bool |
|
| 43 | |||
| 44 | 4 | public function isPopulating(): bool |
|
| 48 | } |
||
| 49 |