1 | <?php |
||
17 | class Dependency_Tree extends ShowCommand { |
||
18 | /** |
||
19 | * Composer instance |
||
20 | * |
||
21 | * @var Composer|null |
||
22 | */ |
||
23 | private $composer; |
||
24 | |||
25 | /** |
||
26 | * Simple constructor |
||
27 | */ |
||
28 | public function __construct() { |
||
32 | |||
33 | /** |
||
34 | * Returns Composer instance |
||
35 | */ |
||
36 | public function get_composer() { |
||
44 | |||
45 | /** |
||
46 | * Generates a dependency tree |
||
47 | */ |
||
48 | public static function generate() { |
||
58 | } |
||
59 |