diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2020-04-17 20:58:27 +0200 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2020-04-17 20:58:27 +0200 |
commit | 1c4182d9d88bb4471f86b08329f1b68a5290872b (patch) | |
tree | e7ccae68902113ece94ab4c8e86fd712dc028d2a /app/class/Dbitem.php | |
parent | dc5613c15b1b414fefadd66912ebf8ff3a5eef9d (diff) | |
download | wcms-1c4182d9d88bb4471f86b08329f1b68a5290872b.tar.gz wcms-1c4182d9d88bb4471f86b08329f1b68a5290872b.zip |
apply psr 12 part 2
Diffstat (limited to 'app/class/Dbitem.php')
-rw-r--r-- | app/class/Dbitem.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/app/class/Dbitem.php b/app/class/Dbitem.php index 34814d2..44dec2c 100644 --- a/app/class/Dbitem.php +++ b/app/class/Dbitem.php @@ -12,7 +12,7 @@ abstract class Dbitem extends Item { $array = []; foreach ($this as $var => $value) { - if($value instanceof DateTime || $value instanceof DateTimeImmutable) { + if ($value instanceof DateTime || $value instanceof DateTimeImmutable) { $array[$var] = $this->$var('string'); } else { $array[$var] = $this->$var(); @@ -20,7 +20,4 @@ abstract class Dbitem extends Item } return $array; } - } - -?>
\ No newline at end of file |