1 | <?php |
||
8 | class CreateWalletOrder extends Order |
||
9 | { |
||
10 | /** |
||
11 | * @var User |
||
12 | */ |
||
13 | protected $user; |
||
14 | |||
15 | /** |
||
16 | * @var int |
||
17 | */ |
||
18 | protected $test_count; |
||
19 | |||
20 | /** |
||
21 | * CreateWalletOrder constructor. |
||
22 | * @param User $user |
||
23 | */ |
||
24 | public function __construct(User $user) |
||
31 | |||
32 | /** |
||
33 | * Method witch run's on serialize object. |
||
34 | * |
||
35 | * @return void. |
||
|
|||
36 | */ |
||
37 | public function handle() |
||
52 | |||
53 | /** |
||
54 | * Check if testing period. |
||
55 | * |
||
56 | * @return string|null |
||
57 | */ |
||
58 | public function checkIfTestWalletPeriodOn() |
||
62 | |||
63 | /** |
||
64 | * @return WalletRepository |
||
65 | */ |
||
66 | private function getWalletsRepository() |
||
70 | } |
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.