Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Pôle IS
Bundles Symfony 2
plantuml-bundle
Commits
dc25b7e4
Commit
dc25b7e4
authored
May 17, 2016
by
Guillaume Perréal
Browse files
Correction d'un bug de normalisation pour réutiliser les filtres.
parent
cb08244c
Changes
1
Show whitespace changes
Inline
Side-by-side
DependencyInjection/Builder/ClassFilterBuilder.php
View file @
dc25b7e4
...
...
@@ -86,7 +86,11 @@ class ClassFilterBuilder
$res
[
$k
]
=
$normalized
;
}
}
return
empty
(
$res
)
?
null
:
$res
;
if
(
empty
(
$res
))
{
return
null
;
}
sort
(
$res
);
return
$res
;
}
return
$data
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment