mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Allowed dynamic properties in model.
This commit is contained in:
parent
bfe381539c
commit
219d13c0f0
2 changed files with 5 additions and 0 deletions
|
@ -55,6 +55,10 @@ It means that composer will look at `master` branch of repository configured und
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
|
### 2023-11-13
|
||||||
|
|
||||||
|
- Silence dynamic property creation warning in Model.php
|
||||||
|
|
||||||
### 2023-11-02
|
### 2023-11-02
|
||||||
|
|
||||||
- Fixed: unitialized property in Debugger.php
|
- Fixed: unitialized property in Debugger.php
|
||||||
|
|
|
@ -42,6 +42,7 @@ App::uses('CakeEventManager', 'Event');
|
||||||
* @package Cake.Model
|
* @package Cake.Model
|
||||||
* @link https://book.cakephp.org/2.0/en/models.html
|
* @link https://book.cakephp.org/2.0/en/models.html
|
||||||
*/
|
*/
|
||||||
|
#[AllowDynamicProperties]
|
||||||
class Model extends CakeObject implements CakeEventListener {
|
class Model extends CakeObject implements CakeEventListener {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue