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