1 | <?php |
||
9 | Class Chart { |
||
10 | |||
11 | protected $subsetList; |
||
12 | |||
13 | /** |
||
14 | * [__construct description] |
||
15 | * @param \Illuminate\Support\Collection $subsetList |
||
16 | */ |
||
17 | public function __construct(Collection $subsetList) |
||
21 | |||
22 | /** |
||
23 | * [addSubset description] |
||
24 | * @param string $subset |
||
25 | * @param \Closure $closure |
||
26 | */ |
||
27 | public function addSubset($subset, Closure $closure) |
||
36 | |||
37 | /** |
||
38 | * [render description] |
||
39 | * @return json [description] |
||
40 | */ |
||
41 | public function render() |
||
63 | |||
64 | /** |
||
65 | * [addSimpleSubset description] |
||
66 | * @param string $subset |
||
67 | * @param \Closure $closure |
||
68 | */ |
||
69 | protected function addSimpleSubset($subset, Closure $closure) |
||
77 | |||
78 | /** |
||
79 | * [addCascadeSubset description] |
||
80 | * @param string $cascadeSubsetNotation |
||
81 | * @param \Closure $closure |
||
82 | */ |
||
83 | protected function addCascadeSubset($cascadeSubsetNotation, Closure $closure) |
||
95 | |||
96 | /** |
||
97 | * [callFunc description] |
||
98 | * @param \Closure $closure |
||
99 | * @param [type] $class |
||
|
|||
100 | * @return [type |
||
101 | */ |
||
102 | protected function callFunc(Closure $closure, $class) |
||
106 | |||
107 | /** |
||
108 | * [makeSubsetClass description] |
||
109 | * @param [type] $subset |
||
110 | * @return [type] |
||
111 | */ |
||
112 | protected function makeSubsetClass($subset) |
||
118 | |||
119 | /** |
||
120 | * [dotNotationToArray description] |
||
121 | * @param array &$arr |
||
122 | * @param string $path |
||
123 | * @param array $val |
||
124 | * @return array |
||
125 | */ |
||
126 | protected function dotNotationToArray(array &$arr, $path, $val) |
||
141 | } |
||
142 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.