1 | <?php |
||
9 | class View extends Authenticated |
||
10 | { |
||
11 | /** |
||
12 | * @var array |
||
13 | */ |
||
14 | protected $priceValues = []; |
||
15 | |||
16 | /** |
||
17 | * @var int the target plan ID |
||
18 | */ |
||
19 | private $id; |
||
20 | |||
21 | public function __construct(AcceptanceTester $I, int $id) |
||
28 | |||
29 | protected function loadPage(): void |
||
35 | |||
36 | public function seeRandomPrices(): void |
||
48 | |||
49 | public function fillRandomPrices(string $type): void |
||
64 | } |
||
65 |