Phalcon\Db\Adapter\MongoDB\InsertOneResult::isAcknowledged PHP Method

isAcknowledged() public method

If the insert was not acknowledged, other fields from the WriteResult (e.g. insertedCount) will be undefined. If the insert was not acknowledged, other fields from the WriteResult (e.g. insertedCount) will be undefined and their getter methods should not be invoked.
public isAcknowledged ( ) : boolean
return boolean
    public function isAcknowledged()
    {
        return $this->writeResult->isAcknowledged();
    }