Skip to content

Instantly share code, notes, and snippets.

@brtriver
brtriver / gist:978383
Created May 18, 2011 11:12 — forked from heavenshell/gist:978358
Silex error
<?php
require_once 'silex.phar';
$app = new Silex\Application();
$app->get('/', function () {
return 'index';
});
$app->get('/hello/{name}', function ($name) {