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 ( 9c18ed...fdd049 )
by Burhan
12:21
created
src/Command/Diff.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -173,7 +173,7 @@
 block discarded – undo
173 173
      * @param string $schemaDefinitionPath
174 174
      * @param string $dbName
175 175
      *
176
-     * @return MySqlDump
176
+     * @return MysqlDump
177 177
      */
178 178
     private function getTargetSchema($schemaDefinitionPath, $dbName)
179 179
     {
Please login to merge, or discard this patch.
src/Config.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
      *      'unix_socket' => $socket
87 87
      *
88 88
      * @param string $connectionName Name of the connection to look up
89
-     * @return ['connection' => [$param => $value, ...], 'morphism' => [ ... ] ]
89
+     * @return null|\Doctrine\DBAL\Configuration => [$param => $value, ...], 'morphism' => [ ... ] ]
90 90
      */
91 91
     public function getEntry($connectionName)
92 92
     {
Please login to merge, or discard this patch.
src/Extractor.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -458,7 +458,7 @@
 block discarded – undo
458 458
      * @param array $keys [$index => STATISTICS-object[]]
459 459
      * @param array $references [$constraint => [KEY_COLUMN_USAGE-object, ...], ...]
460 460
      * @param array $constraints [$constraint => REFERENTIAL_CONSTRAINTS-object, ...]
461
-     * @return string
461
+     * @return string[]
462 462
      */
463 463
     private function getCreateTable($table, array $columns, array $keys, array $references, array $constraints)
464 464
     {
Please login to merge, or discard this patch.
src/Parse/CreateDatabase.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
      * the necessary DDL to create any contained tables. For that you will need
108 108
      * to iterate over the $tables property, calling getDDL() on each element.
109 109
      *
110
-     * @return string
110
+     * @return string[]
111 111
      */
112 112
     public function getDDL()
113 113
     {
Please login to merge, or discard this patch.
src/Parse/CreateTable.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@
 block discarded – undo
134 134
     /**
135 135
      * Returns an array of SQL DDL statements to create the table.
136 136
      *
137
-     * @return string
137
+     * @return string[]
138 138
      */
139 139
     public function getDDL()
140 140
     {
Please login to merge, or discard this patch.
src/Parse/MysqlDump.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -166,7 +166,7 @@
 block discarded – undo
166 166
 
167 167
     /**
168 168
      * @param TokenStream $stream
169
-     * @return bool
169
+     * @return boolean|null
170 170
      */
171 171
     private function _skipQuery(TokenStream $stream)
172 172
     {
Please login to merge, or discard this patch.