@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | public function toDatabaseArray() |
31 | 31 | { |
32 | 32 | return [ |
33 | - 'id' => (int) $this->id, |
|
33 | + 'id' => (int)$this->id, |
|
34 | 34 | 'email' => $this->email, |
35 | 35 | 'status' => $this->status, |
36 | 36 | 'created' => $this->created, |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | */ |
44 | 44 | public function fromDatabaseArray(array $data) |
45 | 45 | { |
46 | - $this->id = (int) $data['id']; |
|
46 | + $this->id = (int)$data['id']; |
|
47 | 47 | $this->email = $data['email']; |
48 | 48 | $this->status = $data['status']; |
49 | 49 | $this->created = $data['created']; |
@@ -56,7 +56,7 @@ |
||
56 | 56 | |
57 | 57 | public function fromCsvArray(array $data) |
58 | 58 | { |
59 | - $this->identifier = (int) $data['Identifier']; |
|
59 | + $this->identifier = (int)$data['Identifier']; |
|
60 | 60 | $this->sourceString = $data['SourceString']; |
61 | 61 | $this->comment = $data['Comment']; |
62 | 62 | $this->de = $data['DE']; |