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
Branch master (cd261d)
by Bruno
23:57
created
Category
lib/Onurb/Bundle/YumlBundle/Yuml/YumlClient.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
         $curl->setPosts(array('dsl_text' => $dsl_text));
53 53
         $return = $curl->getResponse();
54 54
 
55
-        return self::YUML_REDIRECT_URL.$return;
55
+        return self::YUML_REDIRECT_URL . $return;
56 56
     }
57 57
 
58 58
     /**
Please login to merge, or discard this patch.
lib/Onurb/Bundle/YumlBundle/DependencyInjection/OnurbYumlExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
         $configuration = new Configuration();
23 23
         $this->processConfiguration($configuration, $configs);
24 24
 
25
-        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
25
+        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
26 26
         $loader->load('services.yml');
27 27
     }
28 28
 }
Please login to merge, or discard this patch.
lib/Onurb/Bundle/YumlBundle/Curl/Curl.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -59,9 +59,9 @@  discard block
 block discarded – undo
59 59
      * @param array $posts
60 60
      * @return string
61 61
      */
62
-    private function formatCurlPostsString($posts){
62
+    private function formatCurlPostsString($posts) {
63 63
         $tmp = array();
64
-        foreach($posts as $key => $post){
64
+        foreach ($posts as $key => $post) {
65 65
             $tmp[] = $this->formatCurlPostItem($key, $post);
66 66
         }
67 67
         return implode('&', $tmp);
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
      * @param string $value
73 73
      * @return string
74 74
      */
75
-    private function formatCurlPostItem($key, $value){
75
+    private function formatCurlPostItem($key, $value) {
76 76
         return $key . '=' . urlencode($value);
77 77
     }
78 78
 }
Please login to merge, or discard this patch.