app\controllers\Controller::__construct PHP Method

__construct() public method

public __construct ( $container )
    public function __construct($container)
    {
        $this->container = $container;
    }

Usage Example

 public function __construct()
 {
     parent::__construct();
     $this->flickr = new Models\Flickr('8ab106f76a997bba0c04f3772c8c0b4e');
     $this->json = new Models\Json();
     $this->image = new Models\Image();
 }
All Usage Examples Of app\controllers\Controller::__construct