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 ( 617fa5...872112 )
by Stan
06:31
created
src/Api/Entity/MessageEntityArray.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 
7 7
 class MessageEntityArray extends AbstractEntity
8 8
 {
9
-    const ENTITY_TYPE      = 'MessageEntityArray';
9
+    const ENTITY_TYPE = 'MessageEntityArray';
10 10
 
11 11
     protected $entities;
12 12
 
Please login to merge, or discard this patch.
src/Api/Entity/UserProfilePhotos.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 
5 5
 class UserProfilePhotos extends AbstractEntity
6 6
 {
7
-    const ENTITY_TYPE   = 'UserProfilePhotos';
7
+    const ENTITY_TYPE = 'UserProfilePhotos';
8 8
 
9 9
     protected $total_count;
10 10
 
Please login to merge, or discard this patch.
src/Api/Entity/File.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
77 77
     public function download($storePath)
78 78
     {
79 79
         if (file_exists($storePath) && !is_writable($storePath)) {
80
-            throw new EntityException('File "' . $storePath . '" is already exist!"');
80
+            throw new EntityException('File "'.$storePath.'" is already exist!"');
81 81
         }
82 82
 
83 83
         $filePath = $this->getFilePath();
Please login to merge, or discard this patch.
src/Api/Entity/InputFile.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     protected function initFileForUpload()
21 21
     {
22 22
         if (!$this->isFileReadable($this->file)) {
23
-            throw new EntityException('File "' . $this->file . '" is not readable or does not exist!');
23
+            throw new EntityException('File "'.$this->file.'" is not readable or does not exist!');
24 24
         }
25 25
         return fopen($this->file, 'r');
26 26
     }
Please login to merge, or discard this patch.
src/Command/Emulator/Response.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Teebot\Command\Emulator;
6 6
 
Please login to merge, or discard this patch.
src/Command/Listener/Webhook.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Teebot\Command\Listener;
6 6
 
Please login to merge, or discard this patch.
src/Command/AbstractCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Teebot\Command;
6 6
 
Please login to merge, or discard this patch.
src/Client.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  * @author  Stanislav Drozdov <[email protected]>
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Teebot;
15 15
 
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 
45 45
     public function __construct(AbstractContainer $config)
46 46
     {
47
-        define('TEEBOT_ROOT', realpath(__DIR__ . '/../'));
47
+        define('TEEBOT_ROOT', realpath(__DIR__.'/../'));
48 48
 
49 49
         $this->init($config);
50 50
     }
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
                 if ($response instanceof Response) {
112 112
                     $offset = $response->getOffset();
113 113
                 }
114
-            } catch (\Exception $e){
114
+            } catch (\Exception $e) {
115 115
                 $this->logger->exception($e);
116 116
             }
117 117
 
Please login to merge, or discard this patch.
src/Api/Command/Processor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  * @author  Stanislav Drozdov <[email protected]>
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Teebot\Api\Command;
15 15
 
@@ -274,7 +274,7 @@  discard block
 block discarded – undo
274 274
      *
275 275
      * @return bool
276 276
      */
277
-    protected function isCommandSupported(?string $preDefinedCommand, string $command): bool
277
+    protected function isCommandSupported(?string $preDefinedCommand, string $command) : bool
278 278
     {
279 279
         return $preDefinedCommand !== null && strtolower($preDefinedCommand) == strtolower($command);
280 280
     }
Please login to merge, or discard this patch.