コード例 #1
0
ファイル: pigeon.php プロジェクト: npirotte/npirotte-2013.be
 /**
  * Clear out the routing table
  */
 public static function clear()
 {
     self::$routes = array();
 }
コード例 #2
0
ファイル: pigeon_test.php プロジェクト: jamierumbelow/pigeon
 public function test_draw()
 {
     Pigeon::$routes = array('some', 'array', 'here');
     $this->assertEquals(Pigeon::$routes, Pigeon::draw());
 }