コード例 #1
0
ファイル: SchoolAdminTest.php プロジェクト: clever/clever-php
 /**
  * @expectedException UndefinedEndpointException
  */
 public function testUndefinedSecondLevel()
 {
     $schoolAdmins = CleverSchoolAdmin::all(array('limit' => 1));
     $schoolAdmin = $schoolAdmins[0];
     $objs = $schoolAdmin->eventz();
 }
コード例 #2
0
ファイル: SchoolAdmin.php プロジェクト: clever/clever-php
 public static function init()
 {
     self::$secondLevelEndpoints = array('schools' => array(), 'events' => array());
 }