Merge pull request #246 from tamtamchik/patch-1

Updated README.md
pull/268/head
Mike Cao 9 years ago
commit 087032ca7b

@ -116,6 +116,25 @@ class Greeting {
Flight::route('/', array('Greeting', 'hello'));
```
Or an object method:
```php
class Greeting
{
public function __construct() {
$this->name = 'John Doe';
}
public function hello() {
echo "Hello, {$this->name}!";
}
}
$greeting = new Greeting();
Flight::route('/', array($greeting, 'hello'));
```
Routes are matched in the order they are defined. The first route to match a
request will be invoked.

Loading…
Cancel
Save