Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
6a1113bc
Commit
6a1113bc
authored
Apr 17, 2014
by
Benjamin Morel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed unused imports and unnecessary FQCN
parent
32c5a3ea
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
1 addition
and
13 deletions
+1
-13
DrizzlePlatform.php
lib/Doctrine/DBAL/Platforms/DrizzlePlatform.php
+0
-1
MySqlPlatform.php
lib/Doctrine/DBAL/Platforms/MySqlPlatform.php
+0
-1
Column.php
lib/Doctrine/DBAL/Schema/Column.php
+0
-1
Identifier.php
lib/Doctrine/DBAL/Schema/Identifier.php
+0
-2
AbstractVisitor.php
lib/Doctrine/DBAL/Schema/Visitor/AbstractVisitor.php
+0
-1
Graphviz.php
lib/Doctrine/DBAL/Schema/Visitor/Graphviz.php
+0
-1
RemoveNamespacedAssets.php
lib/Doctrine/DBAL/Schema/Visitor/RemoveNamespacedAssets.php
+0
-1
SchemaDiffVisitor.php
lib/Doctrine/DBAL/Schema/Visitor/SchemaDiffVisitor.php
+0
-2
Visitor.php
lib/Doctrine/DBAL/Schema/Visitor/Visitor.php
+0
-1
PoolingShardConnection.php
lib/Doctrine/DBAL/Sharding/PoolingShardConnection.php
+1
-1
ReservedWordsCommand.php
...trine/DBAL/Tools/Console/Command/ReservedWordsCommand.php
+0
-1
No files found.
lib/Doctrine/DBAL/Platforms/DrizzlePlatform.php
View file @
6a1113bc
...
...
@@ -19,7 +19,6 @@
namespace
Doctrine\DBAL\Platforms
;
use
Doctrine\DBAL\DBALException
;
use
Doctrine\DBAL\Schema\TableDiff
;
use
Doctrine\DBAL\Schema\Index
;
use
Doctrine\DBAL\Schema\Table
;
...
...
lib/Doctrine/DBAL/Platforms/MySqlPlatform.php
View file @
6a1113bc
...
...
@@ -19,7 +19,6 @@
namespace
Doctrine\DBAL\Platforms
;
use
Doctrine\DBAL\DBALException
;
use
Doctrine\DBAL\Schema\TableDiff
;
use
Doctrine\DBAL\Schema\Index
;
use
Doctrine\DBAL\Schema\Table
;
...
...
lib/Doctrine/DBAL/Schema/Column.php
View file @
6a1113bc
...
...
@@ -20,7 +20,6 @@
namespace
Doctrine\DBAL\Schema
;
use
Doctrine\DBAL\Types\Type
;
use
Doctrine\DBAL\Schema\Visitor\Visitor
;
/**
* Object representation of a database column.
...
...
lib/Doctrine/DBAL/Schema/Identifier.php
View file @
6a1113bc
...
...
@@ -19,8 +19,6 @@
namespace
Doctrine\DBAL\Schema
;
use
Doctrine\DBAL\Schema\AbstractAsset
;
/**
* An abstraction class for an asset identifier.
*
...
...
lib/Doctrine/DBAL/Schema/Visitor/AbstractVisitor.php
View file @
6a1113bc
...
...
@@ -19,7 +19,6 @@
namespace
Doctrine\DBAL\Schema\Visitor
;
use
Doctrine\DBAL\Platforms\AbstractPlatform
;
use
Doctrine\DBAL\Schema\Table
;
use
Doctrine\DBAL\Schema\Schema
;
use
Doctrine\DBAL\Schema\Column
;
...
...
lib/Doctrine/DBAL/Schema/Visitor/Graphviz.php
View file @
6a1113bc
...
...
@@ -19,7 +19,6 @@
namespace
Doctrine\DBAL\Schema\Visitor
;
use
Doctrine\DBAL\Platforms\AbstractPlatform
;
use
Doctrine\DBAL\Schema\Table
;
use
Doctrine\DBAL\Schema\Schema
;
use
Doctrine\DBAL\Schema\ForeignKeyConstraint
;
...
...
lib/Doctrine/DBAL/Schema/Visitor/RemoveNamespacedAssets.php
View file @
6a1113bc
...
...
@@ -19,7 +19,6 @@
namespace
Doctrine\DBAL\Schema\Visitor
;
use
Doctrine\DBAL\Platforms\AbstractPlatform
;
use
Doctrine\DBAL\Schema\Table
;
use
Doctrine\DBAL\Schema\Schema
;
use
Doctrine\DBAL\Schema\ForeignKeyConstraint
;
...
...
lib/Doctrine/DBAL/Schema/Visitor/SchemaDiffVisitor.php
View file @
6a1113bc
...
...
@@ -19,12 +19,10 @@
namespace
Doctrine\DBAL\Schema\Visitor
;
use
Doctrine\DBAL\Platforms\AbstractPlatform
;
use
Doctrine\DBAL\Schema\Table
;
use
Doctrine\DBAL\Schema\TableDiff
;
use
Doctrine\DBAL\Schema\ForeignKeyConstraint
;
use
Doctrine\DBAL\Schema\Sequence
;
use
Doctrine\DBAL\Schema\SchemaException
;
/**
* Visit a SchemaDiff.
...
...
lib/Doctrine/DBAL/Schema/Visitor/Visitor.php
View file @
6a1113bc
...
...
@@ -19,7 +19,6 @@
namespace
Doctrine\DBAL\Schema\Visitor
;
use
Doctrine\DBAL\Platforms\AbstractPlatform
;
use
Doctrine\DBAL\Schema\Table
;
use
Doctrine\DBAL\Schema\Schema
;
use
Doctrine\DBAL\Schema\Column
;
...
...
lib/Doctrine/DBAL/Sharding/PoolingShardConnection.php
View file @
6a1113bc
...
...
@@ -161,7 +161,7 @@ class PoolingShardConnection extends Connection
$this
->
_conn
=
$this
->
activeConnections
[
$this
->
activeShardId
]
=
$this
->
connectTo
(
$this
->
activeShardId
);
if
(
$this
->
_eventManager
->
hasListeners
(
Events
::
postConnect
))
{
$eventArgs
=
new
\Doctrine\DBAL\Event\
ConnectionEventArgs
(
$this
);
$eventArgs
=
new
ConnectionEventArgs
(
$this
);
$this
->
_eventManager
->
dispatchEvent
(
Events
::
postConnect
,
$eventArgs
);
}
...
...
lib/Doctrine/DBAL/Tools/Console/Command/ReservedWordsCommand.php
View file @
6a1113bc
...
...
@@ -19,7 +19,6 @@
namespace
Doctrine\DBAL\Tools\Console\Command
;
use
Symfony\Component\Console\Input\InputArgument
;
use
Symfony\Component\Console\Input\InputOption
;
use
Symfony\Component\Console\Command\Command
;
use
Symfony\Component\Console\Input\InputInterface
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment