Allowed dynamic properties in model.

This commit is contained in:
Kamil Wylegala 2023-11-12 23:44:57 +01:00
parent bfe381539c
commit 219d13c0f0
2 changed files with 5 additions and 0 deletions

View file

@ -55,6 +55,10 @@ It means that composer will look at `master` branch of repository configured und
## Changelog
### 2023-11-13
- Silence dynamic property creation warning in Model.php
### 2023-11-02
- Fixed: unitialized property in Debugger.php

View file

@ -42,6 +42,7 @@ App::uses('CakeEventManager', 'Event');
* @package Cake.Model
* @link https://book.cakephp.org/2.0/en/models.html
*/
#[AllowDynamicProperties]
class Model extends CakeObject implements CakeEventListener {
/**