Airship\Engine\Continuum\Updaters\Cabin::isAirshipSpecialCabin PHP 메소드

isAirshipSpecialCabin() 보호된 메소드

Is this cabin part of the Airship core? (They don't get automatically updated separate from the core.)
protected isAirshipSpecialCabin ( ) : boolean
리턴 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);
    }