controllers changes

This commit is contained in:
Yuri Kuznetsov
2013-11-27 13:07:09 +02:00
parent 1bb2ef6f36
commit 4692e4b447
5 changed files with 48 additions and 34 deletions
+3 -1
View File
@@ -16,6 +16,8 @@ abstract class Base
protected $serviceClassName = null;
private $service = null;
public $defaultAction = 'index';
public function __construct(Container $container, ServiceFactory $serviceFactory)
{
@@ -84,5 +86,5 @@ abstract class Base
$this->loadService();
return $this->service;
}
}