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 ( 2fa406...0deae9 )
by adev
05:16
created
Category
src/ServiceContainer/VCRExtension.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -41,13 +41,13 @@
 block discarded – undo
41 41
      */
42 42
     public function configure(ArrayNodeDefinition $builder)
43 43
     {
44
-        $normalizeTags = function ($tags) {
45
-            return array_map(function ($tag) {
44
+        $normalizeTags = function($tags) {
45
+            return array_map(function($tag) {
46 46
                 return ltrim($tag, '@');
47 47
             }, $tags);
48 48
         };
49 49
 
50
-        $defineCassetteFilenamingStrategy = function ($item) {
50
+        $defineCassetteFilenamingStrategy = function($item) {
51 51
             if (isset($item['use_scenario_name']) && true === $item['use_scenario_name']) {
52 52
                 $item['cassette_filenaming_strategy'] = 'by_scenario_name';
53 53
             }
Please login to merge, or discard this patch.
src/Cassette/BasicFileNamingStrategyFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 {
9 9
     public function createFileNamingStrategy($strategyName)
10 10
     {
11
-        switch($strategyName) {
11
+        switch ($strategyName) {
12 12
             case 'by_tags':
13 13
                 return new ByTagsFileNamingStrategy();
14 14
             case 'by_scenario_name':
Please login to merge, or discard this patch.
src/Cassette/ByScenarioNameFileNamingStrategy.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,11 +19,11 @@
 block discarded – undo
19 19
 
20 20
     public function createFilename(FeatureNode $feature, ScenarioInterface $scenario, OutlineNode $outline = null)
21 21
     {
22
-        $filename = Transliterator::transliterate($feature->getTitle(), $this->separator) . DIRECTORY_SEPARATOR;
22
+        $filename = Transliterator::transliterate($feature->getTitle(), $this->separator).DIRECTORY_SEPARATOR;
23 23
 
24 24
         if ($outline) {
25 25
             $filename .= Transliterator::transliterate($outline->getTitle(), $this->separator)
26
-                . DIRECTORY_SEPARATOR . $this->separator;
26
+                . DIRECTORY_SEPARATOR.$this->separator;
27 27
         }
28 28
 
29 29
         $filename .= Transliterator::transliterate($scenario->getTitle(), $this->separator);
Please login to merge, or discard this patch.
testapp/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-echo 'Hello ' . ltrim($_SERVER['REQUEST_URI'], '/');
3
+echo 'Hello '.ltrim($_SERVER['REQUEST_URI'], '/');
4 4
 
Please login to merge, or discard this patch.