Airship\Engine\Continuum\Updaters\Airship::__construct PHP 메소드

__construct() 공개 메소드

Airship constructor.
public __construct ( Hail $hail, Supplier $sup )
$hail Hail
$sup Supplier
    public function __construct(Hail $hail, Supplier $sup)
    {
        $this->supplier = $sup;
        $this->hail = $hail;
        $this->type = self::TYPE_ENGINE;
        if (!self::$continuumLogger) {
            self::$continuumLogger = new Log();
        }
    }