GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 7dba25...c906e0 )
by Cees-Jan
05:34
created
src/Type.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace ApiClients\Tools\ResourceTestUtilities;
4 4
 
Please login to merge, or discard this patch.
src/Type/AbstractType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace ApiClients\Tools\ResourceTestUtilities\Type;
4 4
 
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
     final public function __construct()
11 11
     {
12 12
         if (!defined('static::SCALAR')) {
13
-            throw new \InvalidArgumentException('Missing SCALAR constant on ' . get_class($this));
13
+            throw new \InvalidArgumentException('Missing SCALAR constant on '.get_class($this));
14 14
         }
15 15
     }
16 16
 
Please login to merge, or discard this patch.
src/Type/DoubleType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace ApiClients\Tools\ResourceTestUtilities\Type;
4 4
 
Please login to merge, or discard this patch.
src/Type/BoolType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace ApiClients\Tools\ResourceTestUtilities\Type;
4 4
 
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
     public function generate(int $count = 100): Generator
19 19
     {
20 20
         for ($i = 0; $i < $count; $i++) {
21
-            yield (bool)mt_rand(0, 1);
21
+            yield (bool) mt_rand(0, 1);
22 22
         }
23 23
     }
24 24
 
Please login to merge, or discard this patch.
src/Type/IntType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace ApiClients\Tools\ResourceTestUtilities\Type;
4 4
 
Please login to merge, or discard this patch.
src/Type/FloatType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace ApiClients\Tools\ResourceTestUtilities\Type;
4 4
 
Please login to merge, or discard this patch.
src/AbstractEmptyResourceTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace ApiClients\Tools\ResourceTestUtilities;
5 5
 
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
                 self::assertTrue(true);
43 43
                 continue;
44 44
             } catch (Throwable $t) {
45
-                self::fail('Should have thrown a TypeError instead of a ' . get_class($t));
45
+                self::fail('Should have thrown a TypeError instead of a '.get_class($t));
46 46
             }
47 47
         }
48 48
     }
Please login to merge, or discard this patch.
src/TestCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace ApiClients\Tools\ResourceTestUtilities;
5 5
 
Please login to merge, or discard this patch.
src/Type/StringType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace ApiClients\Tools\ResourceTestUtilities\Type;
4 4
 
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
     public function generate(int $count = 100): Generator
19 19
     {
20 20
         for ($i = 0; $i < $count; $i++) {
21
-            yield (string)mt_rand($i, $count * mt_rand($i, $count));
21
+            yield (string) mt_rand($i, $count * mt_rand($i, $count));
22 22
         }
23 23
     }
24 24
 
Please login to merge, or discard this patch.