chore: update CI4 to v4.6.4 + php and js packages to latest

This commit is contained in:
Yassine Doghri 2025-12-20 18:48:44 +00:00
commit 133e308603
36 changed files with 2015 additions and 1476 deletions

View file

@ -145,7 +145,7 @@ class PersonModel extends Model
$this->select('`id`, `full_name`')
->orderBy('`full_name`', 'ASC')
->findAll(),
static function (array $result, $person): array {
static function (array $result, Person $person): array {
$result[$person->id] = $person->full_name;
return $result;
},