Avoid unnecessary is_object call
authorJordi Boggiano <j.boggiano@seld.be>
Mon, 6 May 2013 12:31:38 +0000 (14:31 +0200)
committerJordi Boggiano <j.boggiano@seld.be>
Mon, 6 May 2013 12:31:38 +0000 (14:31 +0200)
lib/Twig/Extension/Core.php

index 0cae6f5..657c3d8 100644 (file)
@@ -847,7 +847,7 @@ function twig_in_filter($value, $compare)
  */
 function twig_escape_filter(Twig_Environment $env, $string, $strategy = 'html', $charset = null, $autoescape = false)
 {
-    if ($autoescape && is_object($string) && $string instanceof Twig_Markup) {
+    if ($autoescape && $string instanceof Twig_Markup) {
         return $string;
     }