Completed
Push — master ( 57b1db...16daf9 )
by Mike
03:22
created

Target::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 3
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Sugarcrm\UpgradeSpec\Context;
4
5
use Sugarcrm\UpgradeSpec\Version\Version;
6
7
final class Target extends Metadata
8
{
9
    /**
10
     * Target constructor.
11
     *
12
     * @param $version
13
     * @param $flav
14
     * @param string $source
15
     */
16
    public function __construct(Version $version, $flav, $source = '')
17
    {
18
        parent::__construct($version, $flav, $source);
19
    }
20
}
21