rest-proxy.php

Simple proxy for RESTful APIs
git clone git://git.finwo.net/app/rest-proxy.php
Log | Files | Refs | README

Controller.php (231B)


      1 <?php
      2 
      3 namespace Finwo\Framework;
      4 
      5 class Controller
      6 {
      7     /**
      8      * @var ParameterBag
      9      */
     10     protected $container;
     11 
     12     public function __construct(ParameterBag $container)
     13     {
     14         $this->container = $container;
     15     }
     16 }