public function __construct($name, $_ignored = null, ProviderInterface $provider = null) { parent::__construct($name, Status::UNKNOWN, $provider ?: new NullProvider()); }
/** * @return bool|null see Status */ public function getStatus() { $status = parent::getStatus(); if (empty($status)) { return $status; } $ratio = $this->getRatioStatus(); return $ratio; }