Completed
Push — master ( 8cb461...189f41 )
by Tom
13s
created

Module::init()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 17
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 9
CRAP Score 1.0156

Importance

Changes 0
Metric Value
dl 0
loc 17
ccs 9
cts 12
cp 0.75
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 9
nc 1
nop 1
crap 1.0156
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;
21
22
use DoctrineORMModule\Listener\PostCliLoadListener;
23
use Zend\ModuleManager\Feature\ControllerProviderInterface;
24
use Zend\ModuleManager\Feature\ConfigProviderInterface;
25
use Zend\ModuleManager\Feature\InitProviderInterface;
26
use Zend\ModuleManager\Feature\DependencyIndicatorInterface;
27
use Zend\ModuleManager\ModuleManagerInterface;
28
29
/**
30
 * Base module for Doctrine ORM.
31
 *
32
 * @license MIT
33
 * @link    www.doctrine-project.org
34
 * @author  Kyle Spraggs <[email protected]>
35
 * @author  Marco Pivetta <[email protected]>
36
 */
37
class Module implements
38
    ControllerProviderInterface,
39
    ConfigProviderInterface,
40
    InitProviderInterface,
41
    DependencyIndicatorInterface
42
{
43
    /**
44
     * {@inheritDoc}
45
     */
46 72
    public function init(ModuleManagerInterface $manager)
47
    {
48 72
        $events = $manager->getEventManager();
49 72
        $serviceManager = $manager->getEvent()->getParam('ServiceManager');
0 ignored issues
show
Bug introduced by
The method getEvent() does not exist on Zend\ModuleManager\ModuleManagerInterface. Did you maybe mean getEventManager()?

This check marks calls to methods that do not seem to exist on an object.

This is most likely the result of a method being renamed without all references to it being renamed likewise.

Loading history...
50
51
        // Initialize logger collector once the profiler is initialized itself
52 72
        $events->attach(
53 72
            'profiler_init',
54
            function () use ($serviceManager) {
55
                $serviceManager->get('doctrine.sql_logger_collector.orm_default');
56
            }
57 72
        );
58
59
        /* @var $postCliLoadListener PostCliLoadListener */
60 72
        $postCliLoadListener = $serviceManager->get(PostCliLoadListener::class);
61 72
        $postCliLoadListener->attach($events);
62 72
    }
63
64
    /**
65
     * {@inheritDoc}
66
     */
67 72
    public function getConfig()
68
    {
69 72
        return include __DIR__ . '/../../config/module.config.php';
70
    }
71
72
    /**
73
     * {@inheritDoc}
74
     */
75 72
    public function getControllerConfig()
76
    {
77 72
        return include __DIR__ . '/../../config/controllers.config.php';
78
    }
79
80
    /**
81
     * {@inheritDoc}
82
     */
83 72
    public function getModuleDependencies()
84
    {
85 72
        return ['DoctrineModule'];
86
    }
87
}
88