| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 2.0078 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 40 | 4 | protected function notifyEmbeddablePrefixedProperties( |
|
| 41 | ?string $propName = null, |
||
| 42 | $oldValue = null, |
||
| 43 | $newValue = null |
||
| 44 | ): void { |
||
| 45 | 4 | if (null === $this->owningEntity) { |
|
| 46 | return; |
||
| 47 | } |
||
| 48 | 4 | $this->owningEntity->notifyEmbeddablePrefixedProperties( |
|
| 49 | 4 | $this->getPrefix(), |
|
| 50 | 4 | $propName, |
|
| 51 | 4 | $oldValue, |
|
| 52 | 4 | $newValue |
|
| 53 | ); |
||
| 58 |