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
Pull Request — develop (#20)
by Tom Van
02:18
created
src/Data/ValueObject/Exif/HorizontalResolution.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     /**
29 29
      * Creates a new instance from given Resolution object
30 30
      *
31
-     * @param HorizontalResolution $Resolution
31
+     * @param HorizontalResolution $resolution
32 32
      *
33 33
      * @return HorizontalResolution
34 34
      */
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 
12 12
 namespace PHPExif\Common\Data\ValueObject\Exif;
13 13
 
14
-use PHPExif\Common\Data\ValueObject\IntegerObject;
15 14
 use \InvalidArgumentException;
16 15
 use \RuntimeException;
17 16
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     public static function fromHorizontalResolution(HorizontalResolution $resolution)
36 36
     {
37 37
         return new self(
38
-            $resolution->getValue() . '/1'
38
+            $resolution->getValue().'/1'
39 39
         );
40 40
     }
41 41
 }
Please login to merge, or discard this patch.
src/Data/ValueObject/Exif/VerticalResolution.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     /**
29 29
      * Creates a new instance from given Resolution object
30 30
      *
31
-     * @param VerticalResolution $Resolution
31
+     * @param VerticalResolution $resolution
32 32
      *
33 33
      * @return VerticalResolution
34 34
      */
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 
12 12
 namespace PHPExif\Common\Data\ValueObject\Exif;
13 13
 
14
-use PHPExif\Common\Data\ValueObject\IntegerObject;
15 14
 use \InvalidArgumentException;
16 15
 use \RuntimeException;
17 16
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     public static function fromVerticalResolution(VerticalResolution $resolution)
36 36
     {
37 37
         return new self(
38
-            $resolution->getValue() . '/1'
38
+            $resolution->getValue().'/1'
39 39
         );
40 40
     }
41 41
 }
Please login to merge, or discard this patch.