@@ -259,6 +259,7 @@ discard block |
||
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 |
||
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 | { |
@@ -22,7 +22,6 @@ |
||
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 | { |
@@ -113,6 +113,12 @@ |
||
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(); |
@@ -194,6 +194,9 @@ |
||
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); |