Airship\Cabin\Bridge\Landing\Redirects::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->pg = $this->blueprint('CustomPages');
        if (!$this->pg instanceof CustomPages) {
            throw new \TypeError(\__('Custom Pages Blueprint'));
        }
    }