Total Complexity | 1 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
23 | class PropertyNotAccessibleException extends NotizException |
||
24 | { |
||
25 | const PROPERTY_ENTRY_VALUE_NOT_ACCESSIBLE = 'The value for the property `%s` (type: `%s`) cannot be modified, because the entry has been frozen. Modifying the value can only occur while the event is being dispatched, see method `%s::fillPropertyEntries()`.'; |
||
26 | |||
27 | /** |
||
28 | * @param PropertyEntry $propertyEntry |
||
29 | * @return self |
||
30 | */ |
||
31 | public static function propertyEntryValueNotAccessible(PropertyEntry $propertyEntry): self |
||
40 |