1 | <?php |
||
19 | class ArrayPerfBench |
||
20 | { |
||
21 | /** |
||
22 | * @var array |
||
23 | */ |
||
24 | private $config; |
||
25 | |||
26 | |||
27 | /** |
||
28 | * Setup config and class |
||
29 | */ |
||
30 | public function classSetUp(): void |
||
34 | |||
35 | /** |
||
36 | * @Subject |
||
37 | */ |
||
38 | public function isArray(): bool |
||
42 | |||
43 | /** |
||
44 | * @Subject |
||
45 | */ |
||
46 | public function castArray(): bool |
||
50 | |||
51 | /** |
||
52 | * Returns test config |
||
53 | * |
||
54 | * @return array |
||
55 | */ |
||
56 | private function getTestConfig(): array |
||
67 | } |
||
68 |