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 ( 398d77...9373d4 )
by Beñat
53:53
created
spec/Error/ErrorSpec.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -12,9 +12,6 @@
 block discarded – undo
12 12
 namespace spec\LIN3S\CS\Error;
13 13
 
14 14
 use PhpSpec\ObjectBehavior;
15
-use Prophecy\Argument;
16
-use Symfony\Component\Process\Exception\ProcessFailedException;
17
-use Symfony\Component\Process\Process;
18 15
 
19 16
 /**
20 17
  * Spec file of Error class.
Please login to merge, or discard this patch.
spec/Exception/CheckFailExceptionSpec.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -12,9 +12,6 @@
 block discarded – undo
12 12
 namespace spec\LIN3S\CS\Exception;
13 13
 
14 14
 use PhpSpec\ObjectBehavior;
15
-use Prophecy\Argument;
16
-use Symfony\Component\Process\Exception\ProcessFailedException;
17
-use Symfony\Component\Process\Process;
18 15
 
19 16
 /**
20 17
  * Spec file of CheckFail exception class.
Please login to merge, or discard this patch.
spec/Exception/ToolUnavailableExceptionSpec.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -12,9 +12,6 @@
 block discarded – undo
12 12
 namespace spec\LIN3S\CS\Exception;
13 13
 
14 14
 use PhpSpec\ObjectBehavior;
15
-use Prophecy\Argument;
16
-use Symfony\Component\Process\Exception\ProcessFailedException;
17
-use Symfony\Component\Process\Process;
18 15
 
19 16
 /**
20 17
  * Spec file of ToolUnavailable exception class.
Please login to merge, or discard this patch.
spec/Git/GitSpec.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -12,9 +12,6 @@
 block discarded – undo
12 12
 namespace spec\LIN3S\CS\Git;
13 13
 
14 14
 use PhpSpec\ObjectBehavior;
15
-use Prophecy\Argument;
16
-use Symfony\Component\Process\Exception\ProcessFailedException;
17
-use Symfony\Component\Process\Process;
18 15
 
19 16
 /**
20 17
  * Spec file of Git class.
Please login to merge, or discard this patch.
src/Application.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use LIN3S\CS\Checker\Composer;
15 15
 use LIN3S\CS\Checker\EsLint;
16 16
 use LIN3S\CS\Checker\PhpCsFixer;
17
-use LIN3S\CS\Checker\PhpFormatter;
18 17
 use LIN3S\CS\Checker\Phpmd;
19 18
 use LIN3S\CS\Checker\ScssLint;
20 19
 use LIN3S\CS\Exception\CheckFailException;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
         }
77 77
         parent::__construct($name, $version);
78 78
 
79
-        $rootDirectory = $rootDirectory ?: realpath(__DIR__ . '/../../../../');
79
+        $rootDirectory = $rootDirectory ? : realpath(__DIR__ . '/../../../../');
80 80
         $this->parameters = Yaml::parse(file_get_contents($rootDirectory . '/.lin3s_cs.yml'))['parameters'];
81 81
         $this->parameters['root_directory'] = $rootDirectory;
82 82
     }
Please login to merge, or discard this patch.
src/Checker/EsLint.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -100,6 +100,7 @@
 block discarded – undo
100 100
 
101 101
     /**
102 102
      * {@inheritdoc}
103
+     * @param string $tool
103 104
      */
104 105
     protected static function isAvailable($tool)
105 106
     {
Please login to merge, or discard this patch.
src/Checker/ScssLint.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -86,6 +86,7 @@
 block discarded – undo
86 86
 
87 87
     /**
88 88
      * {@inheritdoc}
89
+     * @param string $tool
89 90
      */
90 91
     protected static function isAvailable($tool)
91 92
     {
Please login to merge, or discard this patch.