コード例 #1
0
ファイル: AppTest.php プロジェクト: nebo15/micro-yii
 public function testRegisterDuplicateMethod()
 {
     $app = new App();
     $app->foo(function () {
         return 'foo';
     });
     $app->foo(function () {
         return 'foo2';
     });
 }