Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | public function getAll() |
||
26 | { |
||
27 | $actions = $this->adapter->get(sprintf('%s/actions?per_page=%d', $this->endpoint, 200)); |
||
28 | |||
29 | $actions = json_decode($actions); |
||
30 | |||
31 | $this->extractMeta($actions); |
||
32 | |||
33 | return array_map(function ($action) { |
||
34 | return new ActionEntity($action); |
||
35 | }, $actions->actions); |
||
36 | } |
||
37 | |||
54 |