| Total Complexity | 2 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | abstract class AbstractBaseEvent extends Event |
||
| 19 | { |
||
| 20 | private $configurationChanged; |
||
| 21 | |||
| 22 | 21 | public function __construct(bool $configurationChanged) |
|
| 23 | { |
||
| 24 | 21 | $this->configurationChanged = $configurationChanged; |
|
| 25 | 21 | } |
|
| 26 | |||
| 27 | 1 | public function doesConfigurationChanged(): bool |
|
| 30 | } |
||
| 31 | } |
||
| 32 |