| Total Complexity | 4 | 
| Total Lines | 32 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 8 | class BraintreeConfig extends AbstractBundleConfig  | 
            ||
| 9 | { | 
            ||
| 10 | /**  | 
            ||
| 11 | * @return string  | 
            ||
| 12 | */  | 
            ||
| 13 | public function getEnvironment(): string  | 
            ||
| 14 |     { | 
            ||
| 15 | return $this->get(BraintreeConstants::ENVIRONMENT);  | 
            ||
| 16 | }  | 
            ||
| 17 | |||
| 18 | /**  | 
            ||
| 19 | * @return string  | 
            ||
| 20 | */  | 
            ||
| 21 | public function getPublicKey(): string  | 
            ||
| 24 | }  | 
            ||
| 25 | |||
| 26 | /**  | 
            ||
| 27 | * @return string  | 
            ||
| 28 | */  | 
            ||
| 29 | public function getPrivateKey(): string  | 
            ||
| 30 |     { | 
            ||
| 31 | return $this->get(BraintreeConstants::PRIVATE_KEY);  | 
            ||
| 32 | }  | 
            ||
| 33 | |||
| 34 | /**  | 
            ||
| 35 | * @return string  | 
            ||
| 36 | */  | 
            ||
| 37 | public function getMerchantId(): string  | 
            ||
| 40 | }  | 
            ||
| 41 | }  |