Completed
Push — master ( 111bcd...99ca87 )
by Andrey
26:30
created

validatePlugin()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
/**
3
 * @link    https://github.com/nnx-framework/jms-serializer-module
4
 * @author  Malofeykin Andrey  <[email protected]>
5
 */
6
namespace Nnx\JmsSerializerModule\ModuleServiceManager;
7
8
use Interop\Container\ContainerInterface;
9
use Zend\ServiceManager\AbstractPluginManager;
10
11
12
/**
13
 * Class JmsSerializerModuleServiceManager
14
 *
15
 * @package Nnx\JmsSerializerModule\ModuleServiceManager
16
 */
17
class JmsSerializerModuleServiceManager extends AbstractPluginManager implements ContainerInterface
18
{
19
    /**
20
     * @inheritdoc
21
     *
22
     * @param mixed $plugin
23
     *
24
     * @return bool|void
25
     */
26
    public function validatePlugin($plugin)
27
    {
28
        return true;
29
    }
30
}
31