Mongolid\DataMapper\DataMapper::getSchemaMapper PHP Метод

getSchemaMapper() защищенный Метод

Returns a SchemaMapper with the $schema or $schemaClass instance.
protected getSchemaMapper ( ) : SchemaMapper
Результат SchemaMapper
    protected function getSchemaMapper()
    {
        if (!$this->schema) {
            $this->schema = Ioc::make($this->schemaClass);
        }
        return Ioc::make(SchemaMapper::class, [$this->schema]);
    }