1 | <?php |
||
45 | class MultiGraph implements PluginInterface |
||
|
|||
46 | { |
||
47 | /** |
||
48 | * @var Node |
||
49 | */ |
||
50 | private $node; |
||
51 | |||
52 | /** |
||
53 | * @var array |
||
54 | */ |
||
55 | protected $plugins = []; |
||
56 | |||
57 | /** |
||
58 | * @param PluginInterface[] $plugins |
||
59 | */ |
||
60 | public function __construct(array $plugins) |
||
64 | |||
65 | /** |
||
66 | * {@inheritdoc} |
||
67 | */ |
||
68 | public function setNode(Node $node) |
||
72 | |||
73 | /** |
||
74 | * {@inheritdoc} |
||
75 | */ |
||
76 | public function getSlug() |
||
80 | |||
81 | /** |
||
82 | * {@inheritdoc} |
||
83 | */ |
||
84 | public function getConfiguration(Deferred $deferred) |
||
96 | |||
97 | /** |
||
98 | * {@inheritdoc} |
||
99 | */ |
||
100 | public function getValues(Deferred $deferred) |
||
106 | |||
107 | /** |
||
108 | * @return \WyriHaximus\PhuninNode\Value |
||
109 | */ |
||
110 | private function getUptimeValue() |
||
117 | } |
||
118 |