| 1 | <?php |
||
| 5 | class ServiceAccount |
||
| 6 | { |
||
| 7 | |||
| 8 | /** @var string */ |
||
| 9 | protected $privateKey; |
||
| 10 | |||
| 11 | /** @var string */ |
||
| 12 | protected $clientEmail; |
||
| 13 | |||
| 14 | /** @var string */ |
||
| 15 | protected $subject; |
||
| 16 | |||
| 17 | public function __construct(string $privateKey, string $clientEmail, string $subject) |
||
| 23 | |||
| 24 | public function getPrivateKey(): string |
||
| 28 | |||
| 29 | public function getClientEmail(): string |
||
| 33 | |||
| 34 | public function getSubject(): string |
||
| 38 | } |
||
| 39 |