Passed
Push — main ( 8eed7d...df5e61 )
by Sebastian
03:53
created
src/Runner/Files.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
     {
85 85
         $arg = new Arg(
86 86
             $hook,
87
-            static function (string $hook): bool {
87
+            static function(string $hook): bool {
88 88
                 return !HookUtil::isInstallable($hook);
89 89
             }
90 90
         );
Please login to merge, or discard this patch.
src/Storage/File/Json.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
      * @param  bool $assoc
32 32
      * @return \stdClass|array<string, mixed>|null
33 33
      */
34
-    public function read(bool $assoc = false): array|stdClass|null
34
+    public function read(bool $assoc = false): array | stdClass | null
35 35
     {
36 36
         $json = json_decode(parent::read(), $assoc);
37 37
         if (json_last_error() !== JSON_ERROR_NONE) {
Please login to merge, or discard this patch.