setMappingDriverAlias example

$mappingConfig = $this->getMappingDriverBundleConfigDefaults($mappingConfig$bundle$container$bundleMetadata['path']);
                if (!$mappingConfig) {
                    continue;
                }
            } elseif (!$mappingConfig['type']) {
                $mappingConfig['type'] = $this->detectMappingType($mappingConfig['dir']$container);
            }

            $this->assertValidMappingConfiguration($mappingConfig$objectManager['name']);
            $this->setMappingDriverConfig($mappingConfig$mappingName);
            $this->setMappingDriverAlias($mappingConfig$mappingName);
        }
    }

    /** * Register the alias for this mapping driver. * * Aliases can be used in the Query languages of all the Doctrine object managers to simplify writing tasks. * * @return void */
    protected function setMappingDriverAlias(array $mappingConfig, string $mappingName)
    {
Home | Imprint | This part of the site doesn't use cookies.