Completed
Pull Request — master (#422)
by Mike
02:44
created
DBAL/Migrations/Configuration/Connection/Loader/ConnectionHelperLoader.php 2 patches
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -33,6 +33,10 @@
 block discarded – undo
33 33
     /** @var  HelperSet */
34 34
     private $helperSet;
35 35
 
36
+    /**
37
+     * @param HelperSet|null $helperSet
38
+     * @param string $helperName
39
+     */
36 40
     public function __construct($helperSet, $helperName)
37 41
     {
38 42
         $this->helperName = $helperName;
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,6 @@
 block discarded – undo
20 20
 namespace Doctrine\DBAL\Migrations\Configuration\Connection\Loader;
21 21
 
22 22
 
23
-use Doctrine\DBAL\DriverManager;
24 23
 use Doctrine\DBAL\Migrations\Configuration\Connection\ConnectionLoaderInterface;
25 24
 use Symfony\Component\Console\Helper\HelperSet;
26 25
 
Please login to merge, or discard this patch.
Migrations/Configuration/Connection/ConnectionConfigurationChainLoader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 
34 34
     public function load()
35 35
     {
36
-        foreach($this->loaders as $loader) {
36
+        foreach ($this->loaders as $loader) {
37 37
             if (false !== $confObj = $loader->load()) {
38 38
                 return $confObj;
39 39
             }
Please login to merge, or discard this patch.