call static instead of self in Model
All checks were successful
soko-web/pipeline/pr-master This commit looks good

This commit is contained in:
Bence Pőcze 2023-05-07 01:14:01 +02:00
parent 1288a33ff6
commit 6989e1dcf3
Signed by: bence
GPG Key ID: DC5BD6E95A333E6D

View File

@ -41,7 +41,7 @@ abstract class Model
{ {
$array = []; $array = [];
foreach (self::getFields() as $key) { foreach (static::getFields() as $key) {
$method = 'get' . str_replace('_', '', ucwords($key, '_')); $method = 'get' . str_replace('_', '', ucwords($key, '_'));
if (method_exists($this, $method)) { if (method_exists($this, $method)) {