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 ( cd261d...1a4b18 )
by Bruno
41:57
created
tests/OnurbTest/Bundle/YumlBundle/Yuml/YumlClientTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
         $class->expects($this->any())->method('getAssociationNames')->will($this->returnValue(array()));
69 69
         $class->expects($this->any())->method('isIdentifier')->will(
70 70
             $this->returnCallback(
71
-                function ($field) {
71
+                function($field) {
72 72
                     return $field === 'a';
73 73
                 }
74 74
             )
Please login to merge, or discard this patch.
tests/Controller/App/AppKernel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,6 +26,6 @@
 block discarded – undo
26 26
     public function registerContainerConfiguration(LoaderInterface $loader)
27 27
     {
28 28
         // We don't need that Environment stuff, just one config
29
-        $loader->load(__DIR__.'/config.yml');
29
+        $loader->load(__DIR__ . '/config.yml');
30 30
     }
31 31
 }
Please login to merge, or discard this patch.
lib/Onurb/Bundle/YumlBundle/Yuml/YumlClient.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -42,10 +42,10 @@  discard block
 block discarded – undo
42 42
     ) {
43 43
         $this->entityManager = $entityManager;
44 44
 
45
-        $this->metadataFactory = $classMetadataFactory? $classMetadataFactory: new ClassMetadataFactory();
45
+        $this->metadataFactory = $classMetadataFactory ? $classMetadataFactory : new ClassMetadataFactory();
46 46
         $this->metadataFactory->setEntityManager($this->entityManager);
47 47
 
48
-        $this->metadataGrapher = $metadataGrapher? $metadataGrapher: new MetadataGrapher();
48
+        $this->metadataGrapher = $metadataGrapher ? $metadataGrapher : new MetadataGrapher();
49 49
     }
50 50
 
51 51
     /**
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
         $curl->setPosts(array('dsl_text' => $dsl_text));
72 72
         $return = $curl->getResponse();
73 73
 
74
-        return self::YUML_REDIRECT_URL.$return;
74
+        return self::YUML_REDIRECT_URL . $return;
75 75
     }
76 76
 
77 77
     /**
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
      */
82 82
     public function downloadImage($graphUrl, $filename, CurlInterface $curl = null)
83 83
     {
84
-        $curl = $curl? $curl: new Curl($graphUrl);
84
+        $curl = $curl ? $curl : new Curl($graphUrl);
85 85
         $curl->setOutput($filename);
86 86
 
87 87
         return $curl->getResponse();
Please login to merge, or discard this patch.
lib/Onurb/Bundle/YumlBundle/Curl/Curl.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function __construct($url, $curl = null)
14 14
     {
15
-        $this->curl = $curl? $curl: curl_init();
15
+        $this->curl = $curl ? $curl : curl_init();
16 16
         curl_setopt($this->curl, CURLOPT_URL, $url);
17 17
 
18 18
         curl_setopt($this->curl, CURLOPT_SSL_VERIFYPEER, false);
Please login to merge, or discard this patch.