Airship\Cabin\Bridge\Landing\Skyport::airshipLand PHP Method

airshipLand() public method

This function is called after the dependencies have been injected by AutoPilot. Think of it as a user-land constructor.
public airshipLand ( )
    public function airshipLand()
    {
        parent::airshipLand();
        $this->skyport = $this->blueprint('Skyport');
        if (!$this->skyport instanceof SkyportBP) {
            throw new \TypeError(\__('Skyport Blueprint'));
        }
        $this->storeLensVar('active_submenu', ['Admin', 'Extensions']);
        $this->storeLensVar('active_link', 'bridge-link-skyport');
    }