Skip to content

Instantly share code, notes, and snippets.

@alexeygon
alexeygon / app-silex.php
Created October 26, 2015 10:57 — forked from ziadoz/app-silex.php
Slim Framework Controller Strategies (Simple/Silex)
<?php
// Silex Style Controllers
class App extends \Slim\Slim
{
public function mount($controller)
{
if (! is_object($controller)) {
throw new \InvalidArgumentException('Controller must be an object.');
}