Defined in .../app/Modules/Test/Entity/Test.php:38
Defined in .../app/Modules/Test/Entity/Test.php:43
Defined in .../app/Modules/Test/Entity/Test.php:49
Defined in .../app/Modules/Test/Entity/Test.php:54
Defined in .../app/Modules/Test/Entity/Test.php:60
Defined in .../app/Modules/Test/Entity/Test.php:65
Defined in .../app/Modules/Test/Entity/Test.php:71
Defined in .../app/Modules/Test/Entity/Test.php:76
Defined in .../app/Modules/Test/Entity/Test.php:82
Defined in .../app/Modules/Test/Entity/Test.php:87
Defined in .../app/Modules/Test/Entity/Test.php:93
Defined in .../app/Modules/Test/Entity/Test.php:98
Defined in .../app/Modules/Test/Entity/Test.php:104
Defined in .../app/Modules/Test/Entity/Test.php:109
Defined in .../app/Modules/Test/Entity/Test.php:115
Defined in .../app/Modules/Test/Entity/Test.php:120
Defined in .../app/Modules/Test/Entity/Test.php:126
Defined in .../app/Modules/Test/Entity/Test.php:131
Defined in .../app/Modules/Test/Entity/Test.php:137
Defined in .../app/Modules/Test/Entity/Test.php:142
Defined in .../app/Modules/Test/Entity/Test.php:148
Defined in .../app/Modules/Test/Entity/Test.php:153
Defined in .../app/Modules/Test/Entity/Test.php:159
Defined in .../app/Modules/Test/Entity/Test.php:164
Defined in .../app/Modules/Test/Entity/Test.php:170
Defined in .../app/Modules/Test/Entity/Test.php:175
Defined in .../app/Modules/Test/Entity/Test.php:181
Defined in .../app/Modules/Test/Entity/Test.php:186
Defined in .../app/Modules/Test/Entity/Test.php:192
Defined in .../app/Modules/Test/Entity/Test.php:197
Defined in .../app/Modules/Test/Entity/Test.php:203
Defined in .../app/Modules/Test/Entity/Test.php:208
Defined in .../app/Modules/Test/Entity/Test.php:214
Defined in .../app/Modules/Test/Entity/Test.php:219
Defined in .../app/Modules/Test/Entity/Test.php:225
Defined in .../app/Modules/Test/Entity/Test.php:230
Defined in .../app/Modules/Test/Entity/Test.php:236
Defined in .../app/Modules/Test/Entity/Test.php:241
Defined in .../app/Modules/Test/Entity/Test.php:247
Defined in .../app/Modules/Test/Entity/Test.php:252
/** * Constructor with optional mass assignment. * @param array<string, mixed> $data */ Inherited from App\Lib\Entity\Entity Defined in .../app/Modules/Core/Base/Lib/Entity/Entity.php:63
/** * Mass-assign data to entity properties. * Only uses setters or public properties. * @param array<string,mixed> $data */ Inherited from App\Lib\Entity\Entity Defined in .../app/Modules/Core/Base/Lib/Entity/Entity.php:73
/** * Converts the entity to an associative array. * Uses getters when available, otherwise includes public properties. * Optionally converts nested objects recursively if they have toArray(). * @param bool $recursive Whether to recursively convert nested objects. * @return array<string, mixed> */ Inherited from App\Lib\Entity\Entity Defined in .../app/Modules/Core/Base/Lib/Entity/Entity.php:95
/** * Gets the record ID. * @return int|null */ Inherited from App\Lib\Entity\Entity Defined in .../app/Modules/Core/Base/Lib/Entity/Entity.php:125
/** * Gets the creation timestamp of the record. * @return Time|null */ Inherited from App\Lib\Entity\Entity Defined in .../app/Modules/Core/Base/Lib/Entity/Entity.php:134
/** * Gets the ID of the user who created the record. * @return int|null */ Inherited from App\Lib\Entity\Entity Defined in .../app/Modules/Core/Base/Lib/Entity/Entity.php:143
/** * Gets the last update timestamp of the record. * @return Time|null */ Inherited from App\Lib\Entity\Entity Defined in .../app/Modules/Core/Base/Lib/Entity/Entity.php:152
/** * Gets the ID of the user who last updated the record. * @return int|null */ Inherited from App\Lib\Entity\Entity Defined in .../app/Modules/Core/Base/Lib/Entity/Entity.php:161
/** * Gets the deletion timestamp of the record. * @return Time|null */ Inherited from App\Lib\Entity\Entity Defined in .../app/Modules/Core/Base/Lib/Entity/Entity.php:170
/** * Gets the ID of the user who deleted the record. * @return int|null */ Inherited from App\Lib\Entity\Entity Defined in .../app/Modules/Core/Base/Lib/Entity/Entity.php:179
/** * Magic getter invoked when accessing inaccessible or non-existent properties. * Throws an InvalidArgumentException if the property is protected/private or does not exist. * Provides a hint to use the corresponding getter method if available. * @param string $name The name of the property being accessed. * @return mixed * @throws \InvalidArgumentException */ Inherited from App\Lib\Entity\Entity Defined in .../app/Modules/Core/Base/Lib/Entity/Entity.php:194
/** * Magic setter to prevent direct modification of properties. * Throws an exception if trying to set a non-public property * or a non-existent property. * * @param string $name The property name being set. * @param mixed $value The value being assigned. * @throws \InvalidArgumentException */ Inherited from App\Lib\Entity\Entity Defined in .../app/Modules/Core/Base/Lib/Entity/Entity.php:218