From be8f0e6895f64635279eeb7f46725db457be8431 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Fri, 28 Dec 2018 19:13:17 +0100 Subject: [PATCH] php cs fixer --- Models/AuditMapper.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Models/AuditMapper.php b/Models/AuditMapper.php index 8be3e4b..72fdfd5 100644 --- a/Models/AuditMapper.php +++ b/Models/AuditMapper.php @@ -34,7 +34,7 @@ final class AuditMapper extends DataMapperAbstract * @var array> * @since 1.0.0 */ - static protected $columns = [ + protected static $columns = [ 'auditor_audit_id' => ['name' => 'auditor_audit_id', 'type' => 'int', 'internal' => 'id'], 'auditor_audit_created_by' => ['name' => 'auditor_audit_created_by', 'type' => 'int', 'internal' => 'createdBy'], 'auditor_audit_created_at' => ['name' => 'auditor_audit_created_at', 'type' => 'DateTime', 'internal' => 'createdAt'], @@ -48,7 +48,7 @@ final class AuditMapper extends DataMapperAbstract 'auditor_audit_new' => ['name' => 'auditor_audit_new', 'type' => 'string', 'internal' => 'new'], ]; - static protected $belongsTo = [ + protected static $belongsTo = [ 'createdBy' => [ 'mapper' => AccountMapper::class, 'src' => 'auditor_audit_created_by',