Conditions | 2 |
Paths | 2 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2.0185 |
Changes | 0 |
1 | <?php |
||
22 | 1 | public function __construct( $url, PageIdentifier $pageIdentifier = null, Revisions $revisions = null ) { |
|
23 | 1 | parent::__construct( $pageIdentifier, $revisions ); |
|
24 | 1 | if ( !is_string( $url ) ) { |
|
25 | throw new InvalidArgumentException( '$url must be a string' ); |
||
26 | } |
||
27 | 1 | $this->url = $url; |
|
28 | 1 | } |
|
29 | |||
38 |