Airship\Engine\Continuum\Updaters\Cabin::isAirshipSpecialCabin PHP Method

isAirshipSpecialCabin() protected method

Is this cabin part of the Airship core? (They don't get automatically updated separate from the core.)
protected isAirshipSpecialCabin ( ) : boolean
return boolean
    protected function isAirshipSpecialCabin() : bool
    {
        $state = State::instance();
        return $this->supplier->getName() === $state->universal['airship']['trusted-supplier'] && \in_array($this->name, self::AIRSHIP_SPECIAL_CABINS);
    }