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 — develop ( 672b15...d128c2 )
by Tom Van
23s
created
src/Reader/MapperFactory.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -60,13 +60,13 @@  discard block
 block discarded – undo
60 60
         $namespace = $reflClass->getNamespaceName();
61 61
         $namespace .= '\\Exif';
62 62
 
63
-        $path = realpath(__DIR__ . '/Mapper/Exif');
63
+        $path = realpath(__DIR__.'/Mapper/Exif');
64 64
 
65
-        foreach (glob($path . '/*Mapper.php') as $classPath) {
65
+        foreach (glob($path.'/*Mapper.php') as $classPath) {
66 66
             $className = str_replace('.php', '', array_reverse(
67 67
                 explode(DIRECTORY_SEPARATOR, $classPath)
68 68
             )[0]);
69
-            $fqcn = $namespace . '\\' . $className;
69
+            $fqcn = $namespace.'\\'.$className;
70 70
 
71 71
             $fieldMapper = new $fqcn();
72 72
 
@@ -90,13 +90,13 @@  discard block
 block discarded – undo
90 90
         $namespace = $reflClass->getNamespaceName();
91 91
         $namespace .= '\\Iptc';
92 92
 
93
-        $path = realpath(__DIR__ . '/Mapper/Iptc');
93
+        $path = realpath(__DIR__.'/Mapper/Iptc');
94 94
 
95
-        foreach (glob($path . '/*Mapper.php') as $classPath) {
95
+        foreach (glob($path.'/*Mapper.php') as $classPath) {
96 96
             $className = str_replace('.php', '', array_reverse(
97 97
                 explode(DIRECTORY_SEPARATOR, $classPath)
98 98
             )[0]);
99
-            $fqcn = $namespace . '\\' . $className;
99
+            $fqcn = $namespace.'\\'.$className;
100 100
 
101 101
             $fieldMapper = new $fqcn();
102 102
 
Please login to merge, or discard this patch.
src/Reader/Mapper/Exif/CoordinatesFieldMapper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
         array_walk($data, array($this, 'normalizeCoordinatePartData'));
82 82
 
83 83
         // convert to digital degrees
84
-        return floatval($data[0]) + floatval($data[1]/60) + floatval($data[2]/3600);
84
+        return floatval($data[0]) + floatval($data[1] / 60) + floatval($data[2] / 3600);
85 85
     }
86 86
 
87 87
     /**
Please login to merge, or discard this patch.
src/Reader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@
 block discarded – undo
134 134
         $keys = array_keys($data);
135 135
         $keys = array_map('strtolower', $keys);
136 136
         $values = array_values($data);
137
-        $values = array_map(function ($value) {
137
+        $values = array_map(function($value) {
138 138
             if (!is_array($value)) {
139 139
                 return $value;
140 140
             }
Please login to merge, or discard this patch.