Completed
Push — m/add-missing-changelog ( 2d5a99...51a0bf )
by
unknown
11:52 queued 05:50
created
src/Crate/DBAL/Platforms/CratePlatform.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -259,6 +259,7 @@  discard block
 block discarded – undo
259 259
 
260 260
     /**
261 261
      * {@inheritDoc}
262
+     * @param string $name
262 263
      */
263 264
     public function getColumnDeclarationSQL($name, array $field)
264 265
     {
@@ -657,6 +658,7 @@  discard block
 block discarded – undo
657 658
 
658 659
     /**
659 660
      * {@inheritDoc}
661
+     * @param string $tableName
660 662
      */
661 663
     protected function _getCreateTableSQL($tableName, array $columns, array $options = array())
662 664
     {
Please login to merge, or discard this patch.
test/Crate/Test/DBAL/Functional/BindingTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,6 @@
 block discarded – undo
22 22
 namespace Crate\Test\DBAL\Functional;
23 23
 
24 24
 use Crate\Test\DBAL\DBALFunctionalTestCase;
25
-use Doctrine\DBAL\DBALException;
26 25
 
27 26
 class BindingTestCase extends DBALFunctionalTestCase
28 27
 {
Please login to merge, or discard this patch.
test/Crate/Test/DBAL/Functional/ModifyLimitQueryTest.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -113,6 +113,12 @@
 block discarded – undo
113 113
         $this->assertLimitResult(array(2), $sql, 1, 1);
114 114
     }
115 115
 
116
+    /**
117
+     * @param integer[] $expectedResults
118
+     * @param string $sql
119
+     * @param integer $limit
120
+     * @param integer $offset
121
+     */
116 122
     public function assertLimitResult($expectedResults, $sql, $limit, $offset)
117 123
     {
118 124
         $p = $this->_conn->getDatabasePlatform();
Please login to merge, or discard this patch.
test/Crate/Test/DBAL/Functional/Schema/SchemaManagerTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -194,6 +194,9 @@
 block discarded – undo
194 194
         $this->_sm->dropAndCreateTable($table);
195 195
     }
196 196
 
197
+    /**
198
+     * @param string $name
199
+     */
197 200
     protected function getTestTable($name, $options=array())
198 201
     {
199 202
         $table = new Table($name, array(), array(), array(), false, $options);
Please login to merge, or discard this patch.