Changing our coding standards slightly:
[isso.git] / PrinterRootElementTable.php
index d1aedbcbdd6c19cb502b856dc5a84c63b716c292..c8e96da0aab8a67d26567fdd0f7b87719d2fba16 100644 (file)
@@ -133,7 +133,7 @@ class BSPrinterRootElementTable extends BSPrinterRootElement
        */
        private function _calculateColumnCount()
        {
-               foreach ($this->children AS $child)
+               foreach ($this->children as $child)
                {
                        if ($child->numberOfColumns() > $this->colspan)
                        {
@@ -157,7 +157,7 @@ class BSPrinterRootElementTable extends BSPrinterRootElement
                
                $this->_calculateColumnCount();
                
-               foreach ($this->children AS $child)
+               foreach ($this->children as $child)
                {
                        $child->setColumnNumber($this->colspan);
                        $builder .= "\n" . $child->paint();