. */ namespace SP\Modules\Web\Controllers\Status; use GuzzleHttp\ClientInterface; use SP\Core\Application; use SP\Modules\Web\Controllers\SimpleControllerBase; use SP\Mvc\Controller\SimpleControllerHelper; /** * Class StatusBase */ abstract class StatusBase extends SimpleControllerBase { protected ClientInterface $client; public function __construct( Application $application, SimpleControllerHelper $simpleControllerHelper, ClientInterface $client ) { parent::__construct($application, $simpleControllerHelper); $this->client = $client; } }