Completed
Pull Request — master (#528)
by
unknown
03:07
created

MigrationsConfigurationFactory::getOptionsClass()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 3
ccs 0
cts 2
cp 0
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 0
crap 2
1
<?php
2
/*
3
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
4
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
5
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
6
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
7
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
8
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
9
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
10
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
11
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
12
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
13
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
14
 *
15
 * This software consists of voluntary contributions made by many individuals
16
 * and is licensed under the MIT license. For more information, see
17
 * <http://www.doctrine-project.org>.
18
 */
19
20
namespace DoctrineORMModule\Service;
21
22
use Doctrine\DBAL\Migrations\Configuration\Configuration;
23
use DoctrineModule\Service\AbstractFactory;
24
use Interop\Container\ContainerInterface;
25
use Zend\ServiceManager\ServiceLocatorInterface;
26
use Symfony\Component\Console\Output\ConsoleOutput;
27
use Doctrine\DBAL\Migrations\OutputWriter;
28
29
/**
30
 * DBAL Connection ServiceManager factory
31
 *
32
 * @license MIT
33
 * @link    http://www.doctrine-project.org/
34
 * @author  Marco Pivetta <[email protected]>
35
 */
36
class MigrationsConfigurationFactory extends AbstractFactory
37
{
38
    /**
39
     * {@inheritDoc}
40
     *
41
     * @return \Doctrine\DBAL\Migrations\Configuration\Configuration
42
     */
43 18
    public function __invoke(ContainerInterface $container, $requestedName, array $options = null)
44
    {
45 18
        $name             = $this->getName();
46
        /* @var $connection \Doctrine\DBAL\Connection */
47 18
        $connection       = $container->get('doctrine.connection.' . $name);
48 18
        $appConfig        = $container->get('config');
49 18
        $migrationsConfig = $appConfig['doctrine']['migrations_configuration'][$name];
50
51 18
        $output = new ConsoleOutput();
52 18
        $writer = new OutputWriter(function ($message) use ($output) {
53
            return $output->writeln($message);
54 18
        });
55
56 18
        $configuration = new Configuration($connection, $writer);
57
58 18
        $configuration->setName($migrationsConfig['name']);
59 18
        $configuration->setMigrationsDirectory($migrationsConfig['directory']);
60 18
        $configuration->setMigrationsNamespace($migrationsConfig['namespace']);
61 18
        $configuration->setMigrationsTableName($migrationsConfig['table']);
62 18
        $configuration->registerMigrationsFromDirectory($migrationsConfig['directory']);
63
64 18
        if (method_exists($configuration, 'setMigrationsColumnName')) {
65 18
            $configuration->setMigrationsColumnName($migrationsConfig['column']);
66 18
        }
67
68 18
        return $configuration;
69
    }
70
71
    /**
72
     * {@inheritDoc}
73
     *
74
     * @return \Doctrine\DBAL\Migrations\Configuration\Configuration
75
     */
76 18
    public function createService(ServiceLocatorInterface $container)
77
    {
78 18
        return $this($container, \Doctrine\DBAL\Migrations\Configuration\Configuration::class);
79
    }
80
81
    /**
82
     * {@inheritDoc}
83
     */
84
    public function getOptionsClass()
85
    {
86
    }
87
}
88