Conditions | 4 |
Paths | 3 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 4.074 |
Changes | 0 |
1 | <?php |
||
23 | 3 | public function __construct( array $files ) { |
|
24 | 3 | foreach ( $files as $url => $fileContents ) { |
|
25 | 2 | if ( !is_string( $url ) || !is_string( $fileContents ) ) { |
|
26 | throw new InvalidArgumentException( 'Both file url and file contents need to be of type string' ); |
||
27 | } |
||
28 | } |
||
29 | |||
30 | 3 | $this->files = $files; |
|
31 | 3 | } |
|
32 | |||
46 |