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.
Passed
Push — master ( 92f6d4...bbe3c0 )
by Caio
02:33
created
src/JenkinsArduino/Serial/Writer.php 1 patch
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -8,23 +8,23 @@
 block discarded – undo
8 8
  */
9 9
 class Writer implements Writable
10 10
 {
11
- /**
12
-  * @var string
13
-  */
14
- const MODE = 'w';
11
+    /**
12
+     * @var string
13
+     */
14
+    const MODE = 'w';
15 15
 
16
- /**
17
-  * @param  string $path
18
-  * @param  mixed $data
19
-  * @return void
20
-  */
21
- public function write($path, $data)
22
- {
23
-     if (!$resource = @fopen($path, self::MODE)) {
24
-         throw new CannotWriteException();
25
-     }
16
+    /**
17
+     * @param  string $path
18
+     * @param  mixed $data
19
+     * @return void
20
+     */
21
+    public function write($path, $data)
22
+    {
23
+        if (!$resource = @fopen($path, self::MODE)) {
24
+            throw new CannotWriteException();
25
+        }
26 26
 
27
-     fwrite($resource, $data);
28
-     fclose($resource);
29
- }
27
+        fwrite($resource, $data);
28
+        fclose($resource);
29
+    }
30 30
 }
Please login to merge, or discard this patch.