| Total Complexity | 2 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 3 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 5 | class Factory |
||
| 6 | { |
||
| 7 | public static function fromConfig(): Shopify |
||
| 8 | { |
||
| 9 | return new Shopify( |
||
| 10 | config('shopify.credentials.access_token'), |
||
| 11 | config('shopify.credentials.domain'), |
||
| 12 | config('shopify.credentials.api_version'), |
||
| 13 | ); |
||
| 14 | } |
||
| 15 | |||
| 16 | public static function fromArray(array $data): Shopify |
||
| 22 | ); |
||
| 23 | } |
||
| 25 |