コード例 #1
0
ファイル: UserServiceTest.php プロジェクト: tests1/zendcasts
 public function testCanGetAllContactTypes()
 {
     var_dump($this->UserService->GetAllContactTypes());
 }
コード例 #2
0
ファイル: IndexController.php プロジェクト: tests1/zendcasts
 public function preDispatch()
 {
     $this->userService = new App_UserService();
     // cache this!
     $this->view->contactTypes = $this->userService->GetAllContactTypes();
 }