Avoid conflict with parent phpdoc

parent bcf6a619
...@@ -71,16 +71,6 @@ ...@@ -71,16 +71,6 @@
<code>sqlsrv_get_field($this-&gt;stmt, 0)</code> <code>sqlsrv_get_field($this-&gt;stmt, 0)</code>
</TooFewArguments> </TooFewArguments>
</file> </file>
<file src="lib/Doctrine/DBAL/Platforms/AbstractPlatform.php">
<InvalidParamDefault occurrences="1">
<code>int</code>
</InvalidParamDefault>
</file>
<file src="lib/Doctrine/DBAL/Schema/AbstractSchemaManager.php">
<InvalidParamDefault occurrences="1">
<code>string</code>
</InvalidParamDefault>
</file>
<file src="lib/Doctrine/DBAL/Tools/Dumper.php"> <file src="lib/Doctrine/DBAL/Tools/Dumper.php">
<UndefinedClass occurrences="1"> <UndefinedClass occurrences="1">
<code>Collection</code> <code>Collection</code>
......
...@@ -807,6 +807,8 @@ class SqlitePlatform extends AbstractPlatform ...@@ -807,6 +807,8 @@ class SqlitePlatform extends AbstractPlatform
/** /**
* {@inheritDoc} * {@inheritDoc}
*
* @param int|null $createFlags
*/ */
public function getCreateTableSQL(Table $table, $createFlags = null) public function getCreateTableSQL(Table $table, $createFlags = null)
{ {
......
...@@ -287,6 +287,8 @@ class OracleSchemaManager extends AbstractSchemaManager ...@@ -287,6 +287,8 @@ class OracleSchemaManager extends AbstractSchemaManager
/** /**
* {@inheritdoc} * {@inheritdoc}
* *
* @param string|null $database
*
* Calling this method without an argument or by passing NULL is deprecated. * Calling this method without an argument or by passing NULL is deprecated.
*/ */
public function createDatabase($database = null) public function createDatabase($database = null)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment