| 1 | <?php |
||
| 14 | final class FacebookConnection extends Facebook |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var string |
||
| 18 | */ |
||
| 19 | private $apiId; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | private $sharedSecret; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * AbstractConnection constructor. |
||
| 28 | * |
||
| 29 | * @param string $apiKey |
||
| 30 | * @param string $sharedSecret |
||
| 31 | */ |
||
| 32 | public function __construct(string $apiKey, string $sharedSecret) |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @return string |
||
| 45 | */ |
||
| 46 | public function getApiId(): string |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @return string |
||
| 53 | */ |
||
| 54 | public function getSharedSecret(): string |
||
| 58 | } |
||
| 59 |