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 ( 97cb80...5f31f1 )
by Stan
02:56 queued 01:11
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/Api/Command/AbstractEntityEvent.php 2 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
     /**
96 96
      * Sets entity
97 97
      *
98
-     * @param EntityInterface $entity Entity object
98
+     * @param \Teebot\Api\Entity\EntityInterface $entity Entity object
99 99
      *
100 100
      * @return EventInterface
101 101
      */
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
      *
112 112
      * @param string $text Message text
113 113
      *
114
-     * @return Response
114
+     * @return \Teebot\Api\Response
115 115
      */
116 116
     protected function sendMessage(string $text): Response
117 117
     {
@@ -124,9 +124,9 @@  discard block
 block discarded – undo
124 124
     /**
125 125
      * Replies on the message
126 126
      *
127
-     * @param SendMessage $sendMessage Object of the SendMessage method
127
+     * @param \Teebot\Api\Method\SendMessage $sendMessage Object of the SendMessage method
128 128
      *
129
-     * @return Response
129
+     * @return \Teebot\Api\Response
130 130
      */
131 131
     protected function reply(SendMessage $sendMessage): Response
132 132
     {
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
  * @author  Stanislav Drozdov <[email protected]>
11 11
  */
12 12
 
13
-declare(strict_types=1);
13
+declare(strict_types = 1);
14 14
 
15 15
 namespace Teebot\Api\Command;
16 16
 
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
     {
133 133
         $chatId = $this->getChatId();
134 134
 
135
-        if ((int)$chatId == 0) {
135
+        if ((int) $chatId == 0) {
136 136
             return false;
137 137
         }
138 138
 
Please login to merge, or discard this patch.
src/Api/Response.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      *
53 53
      * @param string               $rawData     Raw JSON string
54 54
      * @param null|string          $entityClass Entity class that should be instantiated with decoded JSON data
55
-     * @param null|EntityInterface $parent      Parent class should be set as parent for newly instantiated entity
55
+     * @param null|Entity\EntityInterface $parent      Parent class should be set as parent for newly instantiated entity
56 56
      *
57 57
      * @throws DecodingDataException
58 58
      */
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
      * @param array       $rawItemData Array with raw entity's data
151 151
      * @param null|string $entityClass Entity class to instantiate, if not passed - default Entity class will be used.
152 152
      *
153
-     * @return EntityInterface
153
+     * @return Entity\EntityInterface
154 154
      *
155 155
      * @throws BuildEntityException
156 156
      */
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
  * @author Stanislav Drozdov <[email protected]>
9 9
  */
10 10
 
11
-declare(strict_types=1);
11
+declare(strict_types = 1);
12 12
 
13 13
 namespace Teebot\Api;
14 14
 
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
      *
78 78
      * @return array
79 79
      */
80
-    protected function decodeData(string $rawData): ?array
80
+    protected function decodeData(string $rawData): ? array
81 81
     {
82 82
         if (!is_string($rawData) || !strlen($rawData)) {
83 83
             return [];
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
             $entity = $this->buildEntity($rawItemData, $entityClass);
136 136
 
137 137
             if ($entity && $entity instanceof Update) {
138
-                $this->lastUpdate = (int)$entity->getUpdateId();
138
+                $this->lastUpdate = (int) $entity->getUpdateId();
139 139
             }
140 140
 
141 141
             $entities[] = $entity;
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
         $entity      = null;
161 161
 
162 162
         if (!class_exists($entityClass)) {
163
-            throw new BuildEntityException('Entity "' . $entityClass . '" does not exists or not supported yet!');
163
+            throw new BuildEntityException('Entity "'.$entityClass.'" does not exists or not supported yet!');
164 164
         }
165 165
 
166 166
         /** @var EntityInterface $entity */
Please login to merge, or discard this patch.
src/Client.php 2 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
     /**
53 53
      * Initializes the Client
54 54
      *
55
-     * @param AbstractContainer $config
55
+     * @param Configuration\AbstractContainer $config
56 56
      */
57 57
     protected function init(AbstractContainer $config)
58 58
     {
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
      * @param int  $limit      Limit of the updates to get
69 69
      * @param bool $silentMode If set to true then the events, mapped (in config or by default) to
70 70
      *                         the entities in the result will not be triggered
71
-     * @return Response
71
+     * @return Api\Response
72 72
      */
73 73
     public function getUpdates(
74 74
         $offset = Config::DEFAULT_OFFSET,
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
      *                             be passed manually. If not passed - php input will be used to get the data.
128 128
      * @param bool   $silentMode   If set to true then the events, mapped to
129 129
      *                             the entities in the result will not be triggered
130
-     * @return Response
130
+     * @return Api\Response
131 131
      */
132 132
     public function webhook($receivedData = '', $silentMode = false): Response
133 133
     {
Please login to merge, or discard this 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/Command/AbstractCommand.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,8 +51,8 @@
 block discarded – undo
51 51
     /**
52 52
      * Executes command
53 53
      *
54
-     * @param InputInterface  $input
55
-     * @param OutputInterface $output
54
+     * @param \Symfony\Component\Console\Input\InputInterface  $input
55
+     * @param \Symfony\Component\Console\Output\OutputInterface $output
56 56
      */
57 57
     protected function execute(InputInterface $input, OutputInterface $output)
58 58
     {
Please login to merge, or discard this 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/Configuration/AbstractLoader.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@
 block discarded – undo
135 135
     }
136 136
 
137 137
     /**
138
-     * @return ConfigurationInterface
138
+     * @return \Symfony\Component\Config\Definition\ConfigurationInterface
139 139
      */
140 140
     abstract protected function getConfiguration(): ConfigurationInterface;
141 141
 
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Teebot\Configuration;
6 6
 
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
      */
81 81
     protected function getFileName(): string
82 82
     {
83
-        $env = getenv('ENV') ? '_' . getenv('ENV') : '';
83
+        $env = getenv('ENV') ? '_'.getenv('ENV') : '';
84 84
 
85 85
         return sprintf(static::FILE_NAME, $env);
86 86
     }
Please login to merge, or discard this patch.