| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | 17 | public function __construct( |
|
| 25 | ResourceInterface $resource, |
||
| 26 | $subdomain = "api", |
||
| 27 | $hostname = "soundcloud.com", |
||
| 28 | $scheme = "https://" |
||
| 29 | ) { |
||
| 30 | 17 | $this->resource = $resource; |
|
| 31 | 17 | $this->scheme = $scheme; |
|
| 32 | 17 | $this->subdomain = $subdomain; |
|
| 33 | 17 | $this->hostname = $hostname; |
|
| 34 | 17 | } |
|
| 35 | |||
| 63 |