| Total Complexity | 1 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | class PropertyNotAccessibleException extends NotizException |
||
| 23 | { |
||
| 24 | 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()`.'; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param PropertyEntry $propertyEntry |
||
| 28 | * @return static |
||
| 29 | */ |
||
| 30 | public static function propertyEntryValueNotAccessible(PropertyEntry $propertyEntry) |
||
| 39 |