Jelajahi Sumber

[Form] minor code simplification

Eriksen Costa 14 tahun lalu
induk
melakukan
c9acf2e60c
1 mengubah file dengan 6 tambahan dan 4 penghapusan
  1. 6 4
      src/Symfony/Component/Form/FormView.php

+ 6 - 4
src/Symfony/Component/Form/FormView.php

@@ -110,11 +110,13 @@ class FormView implements \ArrayAccess, \IteratorAggregate, \Countable
      */
     public function isRendered()
     {
-        if (true === $this->rendered || 0 == count($this->children)) {
+        $hasChildren = 0 < count($this->children);
+
+        if (true === $this->rendered || !$hasChildren) {
             return $this->rendered;
         }
 
-        if (count($this->children) > 0) {
+        if ($hasChildren) {
             foreach ($this->children as $child) {
                 if (!$child->isRendered()) {
                     return false;
@@ -122,9 +124,9 @@ class FormView implements \ArrayAccess, \IteratorAggregate, \Countable
             }
 
             return $this->rendered = true;
-        } else {
-            return false;
         }
+
+        return false;
     }
 
     /**