Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
34 | 6 | public function __construct( array $coordinates = [] ) { |
|
35 | 6 | foreach ( $coordinates as $coordinate ) { |
|
36 | 5 | if ( !( $coordinate instanceof LatLongValue ) ) { |
|
37 | 5 | throw new InvalidArgumentException( 'Can only construct Line with LatLongValue objects' ); |
|
38 | } |
||
39 | } |
||
40 | |||
41 | 3 | $this->coordinates = $coordinates; |
|
42 | |||
43 | 3 | parent::__construct(); |
|
44 | 3 | } |
|
45 | |||
72 |