Conditions | 3 |
Paths | 4 |
Total Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
32 | public function __construct( ImportCoordinates $import_coordinates, ImportLogger $logger = null, Relations $relations = null ) { |
||
33 | $this->import_coordinates = $import_coordinates; |
||
34 | $this->logger = $logger ?: new ImportLogger( $this->import_coordinates ); |
||
35 | $this->relations = $relations ?: new Relations( $this->import_coordinates ); |
||
36 | } |
||
37 | |||
78 | } |