Completed
Push — master ( 2fb092...058edd )
by Craig
06:38
created

ZikulaRoutesExtension::load()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 8
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 4
nc 1
nop 2
dl 0
loc 8
rs 9.4285
c 0
b 0
f 0
1
<?php
2
/**
3
 * Routes.
4
 *
5
 * @copyright Zikula contributors (Zikula)
6
 * @license http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public License
7
 * @author Zikula contributors <[email protected]>.
8
 * @link http://www.zikula.org
9
 * @link http://zikula.org
10
 * @version Generated by ModuleStudio 0.7.1 (http://modulestudio.de).
11
 */
12
13
namespace Zikula\RoutesModule\DependencyInjection;
14
15
use Zikula\RoutesModule\DependencyInjection\Base\AbstractZikulaRoutesExtension;
16
17
/**
18
 * Implementation class for service definition loader using the DependencyInjection extension.
19
 */
20
class ZikulaRoutesExtension extends AbstractZikulaRoutesExtension
21
{
22
    // custom enhancements can go here
23
}
24