/**
  * Constructor
  */
 public function __construct()
 {
     $this->environment = new EnvironmentConfigurationActor();
     $this->templates = new TemplateConfigurationActor();
     $this->restaurantStatus = new RoStatus();
     $this->restaurants = new Users();
     parent::__construct();
 }
示例#2
0
 public function __construct($mongo_provider, $monolog = null)
 {
     parent::__construct($mongo_provider, $monolog);
     $this->data_provider = new DataProvider();
 }