| Total Complexity | 3 |
| Total Lines | 48 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class NoaaAlertFactory |
||
| 11 | { |
||
| 12 | private $xmlProvider; |
||
| 13 | private $indexParser; |
||
| 14 | |||
| 15 | 2 | public function __construct(XmlProvider $xmlProvider, NoaaIndexParser $indexParser, PolygonFactory $polygonFactory) |
|
| 16 | { |
||
| 17 | 2 | $this->xmlProvider = $xmlProvider; |
|
| 18 | 2 | $this->indexParser = $indexParser; |
|
| 19 | 2 | $this->polygonFactory = $polygonFactory; |
|
|
|
|||
| 20 | 2 | } |
|
| 21 | |||
| 22 | 2 | public function getAlerts(): array |
|
| 58 | } |
||
| 59 | } |