Passed
Push — master ( 3bb5db...959b11 )
by Julien
16:17
created

Manager::_addVersionToPath()   A

Complexity

Conditions 3
Paths 4

Size

Total Lines 12
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 12

Importance

Changes 2
Bugs 1 Features 0
Metric Value
eloc 7
c 2
b 1
f 0
dl 0
loc 12
ccs 0
cts 8
cp 0
rs 10
cc 3
nc 4
nop 3
crap 12
1
<?php
2
/**
3
 * This file is part of the Zemit Framework.
4
 *
5
 * (c) Zemit Team <[email protected]>
6
 *
7
 * For the full copyright and license information, please view the LICENSE.txt
8
 * file that was distributed with this source code.
9
 */
10
11
namespace Zemit\Assets;
12
13
use Phalcon\Assets\Collection;
14
15
/**
16
 * Class Manager
17
 * {@inheritDoc}
18
 *
19
 * @author Julien Turbide <[email protected]>
20
 * @copyright Zemit Team <[email protected]>
21
 *
22
 * @since 1.0
23
 * @version 1.0
24
 *
25
 * @package Zemit\Assets
26
 */
27
class Manager extends \Phalcon\Assets\Manager
28
{
29
30
}
31