php cs fixer

This commit is contained in:
Dennis Eichhorn 2018-12-28 19:13:17 +01:00
parent 43b27a5b65
commit be8f0e6895

View File

@ -34,7 +34,7 @@ final class AuditMapper extends DataMapperAbstract
* @var array<string, array<string, bool|string>>
* @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',