1 | <?php |
||
15 | final class ProxyInitializationTimeBench |
||
16 | { |
||
17 | /** |
||
18 | * @var Proxy[] |
||
19 | */ |
||
20 | private $cmsUsers; |
||
21 | |||
22 | /** |
||
23 | * @var Proxy[] |
||
24 | */ |
||
25 | private $cmsEmployees; |
||
26 | |||
27 | /** |
||
28 | * @var Proxy[] |
||
29 | */ |
||
30 | private $initializedUsers; |
||
31 | |||
32 | /** |
||
33 | * @var Proxy[] |
||
34 | */ |
||
35 | private $initializedEmployees; |
||
36 | |||
37 | public function init() |
||
52 | |||
53 | public function benchCmsUserInitialization() |
||
59 | |||
60 | public function benchCmsEmployeeInitialization() |
||
66 | |||
67 | public function benchInitializationOfAlreadyInitializedCmsUsers() |
||
73 | |||
74 | public function benchInitializationOfAlreadyInitializedCmsEmployees() |
||
80 | } |
||
81 | |||
82 |