Like this: ``` php class Greeting { public static function hello() { echo 'Hi, Typsy!'; } } $tipsy->router()->when([ 'route' => '/', 'method' => 'get', 'controller' => array('Greeting', 'hello') ]); ```