Merge pull request #246 from tamtamchik/patch-1

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

@ -113,7 +113,26 @@ class Greeting {
} }
} }
Flight::route('/', array('Greeting','hello')); 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 Routes are matched in the order they are defined. The first route to match a

Loading…
Cancel
Save