Completed
Pull Request — master (#11)
by Arnold
03:10
created
src/Auth.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -324,7 +324,8 @@
 block discarded – undo
324 324
      */
325 325
     private static function dummyDispatcher(): EventDispatcher
326 326
     {
327
-        return new class () implements EventDispatcher {
327
+        return new class () implements EventDispatcher
328
+        {
328 329
             /** @inheritDoc */
329 330
             public function dispatch(object $event): object
330 331
             {
Please login to merge, or discard this patch.
tests/Authz/LevelsTest.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -25,9 +25,9 @@
 block discarded – undo
25 25
     public function setUp(): void
26 26
     {
27 27
         $this->authz = new Levels([
28
-           'user' => 1,
29
-           'mod' => 10,
30
-           'admin' => 100
28
+            'user' => 1,
29
+            'mod' => 10,
30
+            'admin' => 100
31 31
         ]);
32 32
     }
33 33
 
Please login to merge, or discard this patch.