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 ( 5f8dfd...6962b6 )
by Peter
04:59
created
Tests/Integration/TestKernel.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -10,6 +10,9 @@
 block discarded – undo
10 10
 {
11 11
     private $configFilename;
12 12
 
13
+    /**
14
+     * @param string $env
15
+     */
13 16
     public function __construct($env, $debug, $configFilename)
14 17
     {
15 18
         parent::__construct($env, $debug);
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
         $this->cacheDir = $cacheDir = tempnam(sys_get_temp_dir(), 'raven-bundle-test');
20 20
         unlink($cacheDir);
21 21
 
22
-        register_shutdown_function(function () use ($cacheDir) {
22
+        register_shutdown_function(function() use ($cacheDir) {
23 23
             $fs = new Filesystem();
24 24
             $fs->remove($cacheDir);
25 25
         });
Please login to merge, or discard this patch.
RecordingRavenClient.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
     {
44 44
         return call_user_func_array(array($this->client, __FUNCTION__), func_get_args());
45 45
     }
46
-    public function message($message, $params=array(), $level=self::INFO, $stack=false, $vars = null)
46
+    public function message($message, $params = array(), $level = self::INFO, $stack = false, $vars = null)
47 47
     {
48 48
         return call_user_func_array(array($this->client, __FUNCTION__), func_get_args());
49 49
     }
@@ -52,11 +52,11 @@  discard block
 block discarded – undo
52 52
         // this one is deprecated, so we don't decorate it
53 53
         return call_user_func_array(array($this->client, __FUNCTION__), func_get_args());
54 54
     }
55
-    public function captureMessage($message, $params=array(), $level_or_options=array(), $stack=false, $vars = null)
55
+    public function captureMessage($message, $params = array(), $level_or_options = array(), $stack = false, $vars = null)
56 56
     {
57 57
         return call_user_func_array(array($this->client, __FUNCTION__), func_get_args());
58 58
     }
59
-    public function captureQuery($query, $level=self::INFO, $engine = '')
59
+    public function captureQuery($query, $level = self::INFO, $engine = '')
60 60
     {
61 61
         return call_user_func_array(array($this->client, __FUNCTION__), func_get_args());
62 62
     }
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
     {
93 93
         return call_user_func_array(array($this->client, __FUNCTION__), func_get_args());
94 94
     }
95
-    public function set_user_data($id, $email=null, $data=array())
95
+    public function set_user_data($id, $email = null, $data = array())
96 96
     {
97 97
         return call_user_func_array(array($this->client, __FUNCTION__), func_get_args());
98 98
     }
Please login to merge, or discard this patch.
Tests/TwigExtensionTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,6 +21,6 @@
 block discarded – undo
21 21
      */
22 22
     public function getFixturesDir()
23 23
     {
24
-        return __DIR__ . '/TwigFixtures';
24
+        return __DIR__.'/TwigFixtures';
25 25
     }
26 26
 }
Please login to merge, or discard this patch.
Tests/Integration/IntegrationTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     {
29 29
         $configurations = array();
30 30
 
31
-        foreach (glob(__DIR__ . '/configs/test*.yml') as $configFilename) {
31
+        foreach (glob(__DIR__.'/configs/test*.yml') as $configFilename) {
32 32
             $configurations[] = array($configFilename, $debug = true);
33 33
             $configurations[] = array($configFilename, $debug = false);
34 34
         }
Please login to merge, or discard this patch.