Ouzo\Utilities\Supplier\MemoizingSupplier::get PHP Метод

get() публичный Метод

public get ( )
    public function get()
    {
        if (!$this->invoked) {
            $function = $this->function;
            $this->cachedResult = $function();
            $this->invoked = true;
        }
        return $this->cachedResult;
    }
MemoizingSupplier