Completed
Pull Request — master (#3610)
by Sergei
03:27 queued 10s
created
tests/Doctrine/Tests/DBAL/Driver/AbstractDriverTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -216,7 +216,7 @@
 block discarded – undo
216 216
     }
217 217
 
218 218
     /**
219
-     * @return mixed[][]
219
+     * @return \Generator
220 220
      */
221 221
     public static function exceptionConversionProvider() : iterable
222 222
     {
Please login to merge, or discard this patch.
tests/Doctrine/Tests/DBAL/Driver/StatementIteratorTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
     }
80 80
 
81 81
     /**
82
-     * @return string[][]
82
+     * @return \Generator
83 83
      */
84 84
     public static function statementProvider() : iterable
85 85
     {
Please login to merge, or discard this patch.
tests/Doctrine/Tests/DBAL/Functional/ModifyLimitQueryTest.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -163,6 +163,7 @@
 block discarded – undo
163 163
 
164 164
     /**
165 165
      * @param array<int, int> $expectedResults
166
+     * @param integer|null $limit
166 167
      */
167 168
     private function assertLimitResult(array $expectedResults, string $sql, ?int $limit, int $offset, bool $deterministic = true) : void
168 169
     {
Please login to merge, or discard this patch.
tests/Doctrine/Tests/DBAL/Schema/SchemaDiffTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     }
39 39
 
40 40
     /**
41
-     * @return AbstractPlatform|MockObject
41
+     * @return AbstractPlatform
42 42
      */
43 43
     private function createPlatform(bool $unsafe)
44 44
     {
Please login to merge, or discard this patch.
tests/Doctrine/Tests/DBAL/Schema/Visitor/CreateSchemaSqlCollectorTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@
 block discarded – undo
142 142
     }
143 143
 
144 144
     /**
145
-     * @return Sequence|MockObject
145
+     * @return Sequence
146 146
      */
147 147
     private function createSequenceMock()
148 148
     {
Please login to merge, or discard this patch.
tests/Doctrine/Tests/DBAL/Types/TypeTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     }
20 20
 
21 21
     /**
22
-     * @return string[][]
22
+     * @return \Generator
23 23
      */
24 24
     public function defaultTypesProvider() : iterable
25 25
     {
Please login to merge, or discard this patch.
lib/Doctrine/DBAL/Connection.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -333,6 +333,7 @@  discard block
 block discarded – undo
333 333
      * version without having to query it (performance reasons).
334 334
      *
335 335
      * @throws Exception
336
+     * @return string
336 337
      */
337 338
     private function getDatabasePlatformVersion() : ?string
338 339
     {
@@ -1067,7 +1068,7 @@  discard block
 block discarded – undo
1067 1068
      * Returns the savepoint name to use for nested transactions are false if they are not supported
1068 1069
      * "savepointFormat" parameter is not set
1069 1070
      *
1070
-     * @return mixed A string with the savepoint name or false.
1071
+     * @return string A string with the savepoint name or false.
1071 1072
      */
1072 1073
     protected function _getNestedTransactionSavePointName()
1073 1074
     {
Please login to merge, or discard this patch.
lib/Doctrine/DBAL/Connections/MasterSlaveConnection.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -127,6 +127,7 @@
 block discarded – undo
127 127
 
128 128
     /**
129 129
      * {@inheritDoc}
130
+     * @param string $connectionName
130 131
      */
131 132
     public function connect($connectionName = null) : void
132 133
     {
Please login to merge, or discard this patch.
lib/Doctrine/DBAL/Driver/SQLSrv/SQLSrvStatement.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -129,6 +129,7 @@
 block discarded – undo
129 129
 
130 130
     /**
131 131
      * @param resource $conn
132
+     * @param LastInsertId $lastInsertId
132 133
      */
133 134
     public function __construct($conn, string $sql, ?LastInsertId $lastInsertId = null)
134 135
     {
Please login to merge, or discard this patch.