Skip to content

Commit b75564b

Browse files
Merge branch '3.3' into 3.4
* 3.3: [CS][2.7] yoda_style, no_unneeded_curly_braces, no_unneeded_final_method, semicolon_after_instruction [Filesystem] mirror - fix copying content with same name as source/target. Removed unnecessary getDefinition() call. .php_cs.dist - simplify config [WebProfilerBundle] fixed TemplateManager when using Twig 2 without compat interfaces
2 parents a55b1af + 79d7cd5 commit b75564b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

History.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public function add(Request $request)
4949
*/
5050
public function isEmpty()
5151
{
52-
return count($this->stack) == 0;
52+
return 0 == count($this->stack);
5353
}
5454

5555
/**

0 commit comments

Comments
 (0)