Passed
Push — master ( 0ad423...09f67c )
by Valentin
01:35
created
source/Snapshotter/AggregationHandler/Database/Types/IncidentStatus.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     /**
18 18
      * Values.
19 19
      */
20
-    const VALUES  = [self::STORED, self::DELETED, self::SUPPRESSED, self::LAST];
20
+    const VALUES = [ self::STORED, self::DELETED, self::SUPPRESSED, self::LAST ];
21 21
 
22 22
     /**
23 23
      * Default values.
Please login to merge, or discard this patch.
source/Snapshotter/AggregationHandler/Database/Sources/IncidentSource.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
     {
24 24
         $where = [
25 25
             'status' => [
26
-                'IN' => new Parameter([IncidentStatus::LAST, IncidentStatus::STORED])
26
+                'IN' => new Parameter([ IncidentStatus::LAST, IncidentStatus::STORED ])
27 27
             ]
28 28
         ];
29 29
 
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
      * @param array          $load
73 73
      * @return null|IncidentRecord
74 74
      */
75
-    public function findStoredBySnapshotByPK(SnapshotRecord $snapshotRecord, $id, array $load = [])
75
+    public function findStoredBySnapshotByPK(SnapshotRecord $snapshotRecord, $id, array $load = [ ])
76 76
     {
77 77
         /** @var IncidentRecord $incident */
78 78
         $incident = $this->findByPK($id, $load);
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
      * @param array          $load
94 94
      * @return null|IncidentRecord
95 95
      */
96
-    public function findBySnapshotByPK(SnapshotRecord $snapshotRecord, $id, array $load = [])
96
+    public function findBySnapshotByPK(SnapshotRecord $snapshotRecord, $id, array $load = [ ])
97 97
     {
98 98
         /** @var IncidentRecord $incident */
99 99
         $incident = $this->findByPK($id, $load);
Please login to merge, or discard this patch.
source/Snapshotter/AggregationHandler/Database/Sources/SnapshotSource.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
      */
18 18
     public function findByHash(string $hash)
19 19
     {
20
-        return $this->findOne(['exception_hash' => $hash]);
20
+        return $this->findOne([ 'exception_hash' => $hash ]);
21 21
     }
22 22
 
23 23
     /**
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      */
26 26
     public function findWithLast(): RecordSelector
27 27
     {
28
-        return $this->find()->with('last_incident', ['alias' => 'last_incident']);
28
+        return $this->find()->with('last_incident', [ 'alias' => 'last_incident' ]);
29 29
     }
30 30
 
31 31
     /**
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
      * @param array      $load
46 46
      * @return null|SnapshotRecord
47 47
      */
48
-    public function findWithLastByPK($id, array $load = [])
48
+    public function findWithLastByPK($id, array $load = [ ])
49 49
     {
50 50
         /** @var SnapshotRecord|null $snapshot */
51 51
         $snapshot = $this->findByPK($id, $load);
Please login to merge, or discard this patch.
source/Snapshotter/AggregationHandler/Controllers/SnapshotsController.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
             return [
158 158
                 'status'  => 200,
159 159
                 'message' => $this->say('Snapshots deleted.'),
160
-                'action'  => ['redirect' => $uri]
160
+                'action'  => [ 'redirect' => $uri ]
161 161
             ];
162 162
         } else {
163 163
             return $this->response->redirect($uri);
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
             return [
194 194
                 'status'  => 200,
195 195
                 'message' => $this->say('Snapshot deleted.'),
196
-                'action'  => ['redirect' => $uri]
196
+                'action'  => [ 'redirect' => $uri ]
197 197
             ];
198 198
         } else {
199 199
             return $this->response->redirect($uri);
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
         if (array_key_exists('backToList', $query)) {
213 213
             $uri = $this->vault->uri('snapshots');
214 214
         } else {
215
-            $uri = $request->getServerParams()['HTTP_REFERER'];
215
+            $uri = $request->getServerParams()[ 'HTTP_REFERER' ];
216 216
         }
217 217
 
218 218
         return $uri;
@@ -252,14 +252,14 @@  discard block
 block discarded – undo
252 252
         $incident->save();
253 253
 
254 254
         $uri = $this->vault
255
-            ->uri('snapshots:edit', ['id' => $snapshot->primaryKey()])
255
+            ->uri('snapshots:edit', [ 'id' => $snapshot->primaryKey() ])
256 256
             ->withFragment('history');
257 257
 
258 258
         if ($this->input->isAjax()) {
259 259
             return [
260 260
                 'status'  => 200,
261 261
                 'message' => $this->say('Snapshot incident suppressed.'),
262
-                'action'  => ['redirect' => $uri]
262
+                'action'  => [ 'redirect' => $uri ]
263 263
             ];
264 264
         } else {
265 265
             return $this->response->redirect($uri);
@@ -368,14 +368,14 @@  discard block
 block discarded – undo
368 368
         $incident->delete();
369 369
 
370 370
         $uri = $this->vault
371
-            ->uri('snapshots:edit', ['id' => $snapshot->primaryKey()])
371
+            ->uri('snapshots:edit', [ 'id' => $snapshot->primaryKey() ])
372 372
             ->withFragment('history');
373 373
 
374 374
         if ($this->input->isAjax()) {
375 375
             return [
376 376
                 'status'  => 200,
377 377
                 'message' => $this->say('Snapshot incident deleted.'),
378
-                'action'  => ['redirect' => $uri]
378
+                'action'  => [ 'redirect' => $uri ]
379 379
             ];
380 380
         } else {
381 381
             return $this->response->redirect($uri);
Please login to merge, or discard this patch.
source/Snapshotter/FileHandler/Entities/FileSnapshot.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,6 +38,6 @@
 block discarded – undo
38 38
      */
39 39
     public function timestamp(): FileTimestamp
40 40
     {
41
-        return new FileTimestamp(filemtime($this->filename), []);
41
+        return new FileTimestamp(filemtime($this->filename), [ ]);
42 42
     }
43 43
 }
44 44
\ No newline at end of file
Please login to merge, or discard this patch.
source/Snapshotter/FileHandler/Controllers/SnapshotsController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
             return [
104 104
                 'status'  => 200,
105 105
                 'message' => $this->say('Snapshots deleted.'),
106
-                'action'  => ['redirect' => $uri]
106
+                'action'  => [ 'redirect' => $uri ]
107 107
             ];
108 108
         } else {
109 109
             return $this->response->redirect($uri);
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
             return [
137 137
                 'status'  => 200,
138 138
                 'message' => $this->say('Snapshot deleted.'),
139
-                'action'  => ['redirect' => $uri]
139
+                'action'  => [ 'redirect' => $uri ]
140 140
             ];
141 141
         } else {
142 142
             return $this->response->redirect($uri);
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
         if (array_key_exists('backToList', $query)) {
156 156
             $uri = $this->vault->uri('snapshots');
157 157
         } else {
158
-            $uri = $request->getServerParams()['HTTP_REFERER'];
158
+            $uri = $request->getServerParams()[ 'HTTP_REFERER' ];
159 159
         }
160 160
 
161 161
         return $uri;
Please login to merge, or discard this patch.
tests/TestApplication.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
  */
36 36
 class TestApplication extends Core
37 37
 {
38
-    const LOAD = [SpiralBindings::class];
38
+    const LOAD = [ SpiralBindings::class ];
39 39
 
40 40
     protected function bootstrap()
41 41
     {
Please login to merge, or discard this patch.
tests/Snapshotter/AggregationHandler/Services/SnapshotServiceTest.php 1 patch
Spacing   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -62,18 +62,18 @@  discard block
 block discarded – undo
62 62
         $snapshotRecord = $this->handleSnapshot($snapshot, true);
63 63
         $counters = $service->countOccurred($snapshotRecord, $source);
64 64
 
65
-        $this->assertEquals(1, $counters['daily']);
66
-        $this->assertEquals(1, $counters['weekly']);
67
-        $this->assertEquals(1, $counters['monthly']);
68
-        $this->assertEquals(1, $counters['yearly']);
65
+        $this->assertEquals(1, $counters[ 'daily' ]);
66
+        $this->assertEquals(1, $counters[ 'weekly' ]);
67
+        $this->assertEquals(1, $counters[ 'monthly' ]);
68
+        $this->assertEquals(1, $counters[ 'yearly' ]);
69 69
 
70 70
         $this->handleSnapshot($snapshot, true);
71 71
         $counters = $service->countOccurred($snapshotRecord, $source);
72 72
 
73
-        $this->assertEquals(2, $counters['daily']);
74
-        $this->assertEquals(2, $counters['weekly']);
75
-        $this->assertEquals(2, $counters['monthly']);
76
-        $this->assertEquals(2, $counters['yearly']);
73
+        $this->assertEquals(2, $counters[ 'daily' ]);
74
+        $this->assertEquals(2, $counters[ 'weekly' ]);
75
+        $this->assertEquals(2, $counters[ 'monthly' ]);
76
+        $this->assertEquals(2, $counters[ 'yearly' ]);
77 77
 
78 78
         /** @var IncidentRecord $incident */
79 79
         $incident = $snapshotRecord->getIncidentsHistory()->getIterator()->current();
@@ -83,40 +83,40 @@  discard block
 block discarded – undo
83 83
         $incident->save();
84 84
 
85 85
         $counters = $service->countOccurred($snapshotRecord, $source);
86
-        $this->assertEquals(1, $counters['daily']);
87
-        $this->assertEquals(2, $counters['weekly']);
88
-        $this->assertEquals(2, $counters['monthly']);
89
-        $this->assertEquals(2, $counters['yearly']);
86
+        $this->assertEquals(1, $counters[ 'daily' ]);
87
+        $this->assertEquals(2, $counters[ 'weekly' ]);
88
+        $this->assertEquals(2, $counters[ 'monthly' ]);
89
+        $this->assertEquals(2, $counters[ 'yearly' ]);
90 90
 
91 91
         //One of them occurred not in this week
92 92
         $incident->time_created = (new \DateTime('now'))->sub(new \DateInterval('P8D'));
93 93
         $incident->save();
94 94
 
95 95
         $counters = $service->countOccurred($snapshotRecord, $source);
96
-        $this->assertEquals(1, $counters['daily']);
97
-        $this->assertEquals(1, $counters['weekly']);
98
-        $this->assertEquals(2, $counters['monthly']);
99
-        $this->assertEquals(2, $counters['yearly']);
96
+        $this->assertEquals(1, $counters[ 'daily' ]);
97
+        $this->assertEquals(1, $counters[ 'weekly' ]);
98
+        $this->assertEquals(2, $counters[ 'monthly' ]);
99
+        $this->assertEquals(2, $counters[ 'yearly' ]);
100 100
 
101 101
         //One of them occurred not in this month
102 102
         $incident->time_created = (new \DateTime('now'))->sub(new \DateInterval('P2M'));
103 103
         $incident->save();
104 104
 
105 105
         $counters = $service->countOccurred($snapshotRecord, $source);
106
-        $this->assertEquals(1, $counters['daily']);
107
-        $this->assertEquals(1, $counters['weekly']);
108
-        $this->assertEquals(1, $counters['monthly']);
109
-        $this->assertEquals(2, $counters['yearly']);
106
+        $this->assertEquals(1, $counters[ 'daily' ]);
107
+        $this->assertEquals(1, $counters[ 'weekly' ]);
108
+        $this->assertEquals(1, $counters[ 'monthly' ]);
109
+        $this->assertEquals(2, $counters[ 'yearly' ]);
110 110
 
111 111
         //One of them occurred not in this year
112 112
         $incident->time_created = (new \DateTime('now'))->sub(new \DateInterval('P2Y'));
113 113
         $incident->save();
114 114
 
115 115
         $counters = $service->countOccurred($snapshotRecord, $source);
116
-        $this->assertEquals(1, $counters['daily']);
117
-        $this->assertEquals(1, $counters['weekly']);
118
-        $this->assertEquals(1, $counters['monthly']);
119
-        $this->assertEquals(1, $counters['yearly']);
116
+        $this->assertEquals(1, $counters[ 'daily' ]);
117
+        $this->assertEquals(1, $counters[ 'weekly' ]);
118
+        $this->assertEquals(1, $counters[ 'monthly' ]);
119
+        $this->assertEquals(1, $counters[ 'yearly' ]);
120 120
     }
121 121
 
122 122
     /**
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
         $this->assertNotEmpty($snapshotRecord->getLastIncident());
140 140
         $this->assertCount(0, $snapshotRecord->getIncidentsHistory());
141 141
         $this->assertCount(1, $incidentSource);
142
-        $this->assertCount(1, $incidentSource->find(['status' => IncidentStatus::LAST]));
142
+        $this->assertCount(1, $incidentSource->find([ 'status' => IncidentStatus::LAST ]));
143 143
 
144 144
         $service->delete($snapshotRecord);
145 145
 
@@ -151,10 +151,10 @@  discard block
 block discarded – undo
151 151
         $this->assertEmpty($snapshotRecord->getLastIncident());
152 152
         $this->assertCount(1, $snapshotRecord->getIncidentsHistory());
153 153
         $this->assertCount(1, $incidentSource);
154
-        $this->assertCount(1, $incidentSource->find(['status' => IncidentStatus::DELETED]));
154
+        $this->assertCount(1, $incidentSource->find([ 'status' => IncidentStatus::DELETED ]));
155 155
 
156 156
         /** @var IncidentRecord $incident */
157
-        $incident = iterator_to_array($snapshotRecord->getIncidentsHistory())[0];
157
+        $incident = iterator_to_array($snapshotRecord->getIncidentsHistory())[ 0 ];
158 158
 
159 159
         $this->assertNotEmpty($incident);
160 160
         $this->assertEmpty($incident->getExceptionSource());
Please login to merge, or discard this patch.
tests/Snapshotter/AggregationHandler/Database/SnapshotRecordTest.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
         $this->assertCount(1, $record->getIncidentsHistory());
33 33
 
34 34
         /** @var IncidentRecord $incident */
35
-        $incident = iterator_to_array($record->getIncidentsHistory())[0];
35
+        $incident = iterator_to_array($record->getIncidentsHistory())[ 0 ];
36 36
 
37 37
         $this->assertNotEmpty($incident);
38 38
         $this->assertNotEmpty($incident->getExceptionSource());
@@ -47,13 +47,13 @@  discard block
 block discarded – undo
47 47
         $this->assertEquals(3, $record->count_occurred);
48 48
         $this->assertCount(2, $record->getIncidentsHistory());
49 49
 
50
-        $incident = iterator_to_array($record->getIncidentsHistory())[0];
50
+        $incident = iterator_to_array($record->getIncidentsHistory())[ 0 ];
51 51
 
52 52
         $this->assertNotEmpty($incident);
53 53
         $this->assertNotEmpty($incident->getExceptionSource());
54 54
         $this->assertTrue($incident->status->isStored());
55 55
 
56
-        $incident = iterator_to_array($record->getIncidentsHistory())[1];
56
+        $incident = iterator_to_array($record->getIncidentsHistory())[ 1 ];
57 57
 
58 58
         $this->assertNotEmpty($incident);
59 59
         $this->assertEmpty($incident->getExceptionSource());
@@ -69,20 +69,20 @@  discard block
 block discarded – undo
69 69
         $this->assertEquals(4, $record->count_occurred);
70 70
         $this->assertCount(3, $record->getIncidentsHistory());
71 71
 
72
-        $incident = iterator_to_array($record->getIncidentsHistory())[0];
72
+        $incident = iterator_to_array($record->getIncidentsHistory())[ 0 ];
73 73
 
74 74
         $this->assertNotEmpty($incident);
75 75
         $this->assertNotEmpty($incident->getExceptionSource());
76 76
         $this->assertTrue($incident->status->isStored());
77 77
 
78
-        $incident = iterator_to_array($record->getIncidentsHistory())[1];
78
+        $incident = iterator_to_array($record->getIncidentsHistory())[ 1 ];
79 79
 
80 80
         $this->assertNotEmpty($incident);
81 81
         $this->assertEmpty($incident->getExceptionSource());
82 82
         $this->assertFalse($incident->status->isStored());
83 83
         $this->assertTrue($incident->status->isSuppressed());
84 84
 
85
-        $incident = iterator_to_array($record->getIncidentsHistory())[2];
85
+        $incident = iterator_to_array($record->getIncidentsHistory())[ 2 ];
86 86
 
87 87
         $this->assertNotEmpty($incident);
88 88
         $this->assertNotEmpty($incident->getExceptionSource());
Please login to merge, or discard this patch.