Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
MSSQL Bundle
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Symfony2
MSSQL Bundle
Commits
dc17d5e4
Commit
dc17d5e4
authored
4 years ago
by
Kateryna Bogatova
Browse files
Options
Downloads
Patches
Plain Diff
42063 - Ошибка при создании базы
parent
73b1be36
Branches
feature/42063_error_creating_db
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!8
1.x
,
!5
Feature/42063 error creating db
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
DependencyInjection/Compiler/MSSQLCompilerPass.php
+2
-2
2 additions, 2 deletions
DependencyInjection/Compiler/MSSQLCompilerPass.php
with
2 additions
and
2 deletions
DependencyInjection/Compiler/MSSQLCompilerPass.php
+
2
−
2
View file @
dc17d5e4
...
...
@@ -20,9 +20,9 @@ class MSSQLCompilerPass implements CompilerPassInterface
$container
->
setParameter
(
'security.acl.dbal.schema.class'
,
Schema
::
class
);
$container
->
setParameter
(
'security.acl.dbal.schema_listener.class'
,
AclSchemaListener
::
class
);
$container
->
getDefinition
(
'security.acl.dbal.schema'
)
->
setClass
(
$container
->
getParameter
(
'security.acl.dbal.schema.class'
));
$container
->
getDefinition
(
'security.acl.dbal.schema'
)
->
setClass
(
$container
->
getParameter
(
'security.acl.dbal.schema.class'
))
->
setLazy
(
true
)
;
$container
->
getDefinition
(
'security.acl.dbal.schema_listener'
)
->
setClass
(
$container
->
getParameter
(
'security.acl.dbal.schema_listener.class'
));
$container
->
getDefinition
(
InitAclCommand
::
class
)
->
setClass
(
\Axioma\MssqlBundle\Security\Acl\Command\InitAclCommand
::
class
);
}
}
}
\ No newline at end of file
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment