| 1 | <?php |
||
| 13 | class BanklyCard |
||
| 14 | { |
||
| 15 | use Rest; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param string $clientSecret |
||
| 19 | * @param string $clientId |
||
| 20 | * @return void |
||
|
|
|||
| 21 | */ |
||
| 22 | public function __construct($clientSecret = null, $clientId = null) |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param string $proxy |
||
| 31 | * @param string $page |
||
| 32 | * @param integer $pageSize |
||
| 33 | * @param string $startDate |
||
| 34 | * @param string $endDate |
||
| 35 | * @return array |
||
| 36 | */ |
||
| 37 | public function transactions(string $proxy, string $page, int $pageSize, string $startDate, string $endDate) |
||
| 48 | } |
||
| 49 |
Adding a
@returnannotation to a constructor is not recommended, since a constructor does not have a meaningful return value.Please refer to the PHP core documentation on constructors.