Tadeu Bento

Results 248 comments of Tadeu Bento

> > **f421ebd** commented > > +1 (and +1 on deragon's apology) > > I can't find a good S3 GUI anywhere for Linux - there really seems to be...

@mrjgreen I found out that if the method is named `post()` instead of `postTest()` it works fine. I'm running on `dev-master` was this changed recently?

I also found another small issue regarding the controllers... If I try to do something like this: ``` $router->group(["prefix" => "/test/{id:i}"], function($router) use($ns) { $router->controller("/", "$ns\\Test"); $router->controller("/page", "$ns\\Page"); }); ```...

@mrjgreen Regarding **the first issue**: I had it implemented like this: ``` $router->controller('/page/', "$ns\\Page"); ``` And then my `Page` Controller was: ``` class Page { public function anyIndex() { return...

My dispatcher is: ``` $dispatcher = new \Phroute\Phroute\Dispatcher($this->router->getData()); $response = $dispatcher->dispatch($_SERVER['REQUEST_METHOD'], parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)); ```

Why do you say `Note the controller is assigned to '/'`? Can't I just have a controller for each route I might want? In a way that: - `/test/` =>...

I don't know if you read my comment because we commented almost at the same time. The ideia, as described, was to: - `GET /test/`: Loads `Controllers\Test.php` and uses method...

Great! I initially misunderstood the default routing using `Index`. I'm glad that even with that we could make anything useful with it! As I said before just `get()` and `post()`...

I found out that `$handler` on `Dispatcher.php`, line 47, has the information I need. However I'm not sure as how to pass it to the filter since it has a...