Total Complexity | 3 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
8 | class Changelog |
||
9 | { |
||
10 | /** |
||
11 | * @var \Composer\Package\PackageInterface |
||
12 | */ |
||
13 | private $package; |
||
14 | |||
15 | /** |
||
16 | * @var array |
||
17 | */ |
||
18 | private $changelog; |
||
19 | |||
20 | /** |
||
21 | * @param \Composer\Package\PackageInterface $package |
||
22 | * @param array $changelog |
||
23 | */ |
||
24 | public function __construct( |
||
25 | \Composer\Package\PackageInterface $package, |
||
26 | array $changelog |
||
27 | ) { |
||
28 | $this->package = $package; |
||
29 | $this->changelog = $changelog; |
||
30 | } |
||
31 | |||
32 | public function getOwner() |
||
35 | } |
||
36 | |||
37 | public function getReleases() |
||
40 | } |
||
41 | } |
||
42 |