1 | <?php |
||
9 | abstract class AbstractNetwork |
||
10 | { |
||
11 | /** |
||
12 | * username |
||
13 | * @var string |
||
14 | */ |
||
15 | protected $username = ''; |
||
16 | |||
17 | /** |
||
18 | * password |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $password = ''; |
||
22 | |||
23 | /** |
||
24 | * AbstractNetwork constructor. |
||
25 | * @param string $username |
||
26 | * @param string $password |
||
27 | */ |
||
28 | public function __construct(string $username, string $password) |
||
33 | |||
34 | } |
||
35 |