for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace NoaaCapAlerts;
class NoaaAlerts
{
private Dependencies $dependencyContainer;
public function __construct()
$this->dependencyContainer = new Dependencies();
}
public function getAlerts(): array
$noaaAlertManager = $this->dependencyContainer['NoaaAlertManager'];
return $noaaAlertManager->getAlerts();