| Total Complexity | 4 |
| Total Lines | 38 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class DomainObjectObserverRegistry implements \TYPO3\CMS\Core\SingletonInterface |
||
| 8 | { |
||
| 9 | |||
| 10 | /** |
||
| 11 | * @var array |
||
| 12 | */ |
||
| 13 | protected $domainObjectClassNames = []; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * |
||
| 17 | * @param string $domainObjectClassName |
||
| 18 | */ |
||
| 19 | public function register( |
||
| 27 | } |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param string $domainObjectClassName |
||
| 31 | * @return bool |
||
| 32 | */ |
||
| 33 | public function isRegistered($domainObjectClassName) |
||
| 36 | } |
||
| 37 | |||
| 38 | /** |
||
| 39 | * |
||
| 40 | * @return array |
||
| 41 | */ |
||
| 42 | public function getAll() |
||
| 47 |