Мелкие правки

This commit is contained in:
origami11 2017-02-17 19:09:01 +03:00
parent a75f450edd
commit 3a77f74177
5 changed files with 13 additions and 22 deletions

13
src/View/List.php Normal file
View file

@ -0,0 +1,13 @@
<?php
class View_List extends View_View
{
function execute()
{
$result = array();
foreach ($this->_section as $key => $value) {
$result [] = $value->execute();
}
return $result;
}
}