Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Pôle IS
Bundles Symfony 2
plantuml-bundle
Commits
dc25b7e4
Commit
dc25b7e4
authored
May 17, 2016
by
Guillaume Perréal
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correction d'un bug de normalisation pour réutiliser les filtres.
parent
cb08244c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
DependencyInjection/Builder/ClassFilterBuilder.php
DependencyInjection/Builder/ClassFilterBuilder.php
+5
-1
No files found.
DependencyInjection/Builder/ClassFilterBuilder.php
View file @
dc25b7e4
...
@@ -86,7 +86,11 @@ class ClassFilterBuilder
...
@@ -86,7 +86,11 @@ class ClassFilterBuilder
$res
[
$k
]
=
$normalized
;
$res
[
$k
]
=
$normalized
;
}
}
}
}
return
empty
(
$res
)
?
null
:
$res
;
if
(
empty
(
$res
))
{
return
null
;
}
sort
(
$res
);
return
$res
;
}
}
return
$data
;
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