예제 #1
0
 public function Test_get_object_info()
 {
     $this->assertNotEqual(md5(serialize(AkDebug::get_object_info($this->AkTestingObjectInspectionChildInstance))), md5(serialize(AkDebug::get_object_info($this->AkTestingObjectInspectionChildInstance, true))), 'Object inspection does not exclude parent class methods');
 }
예제 #2
0
파일: base.php 프로젝트: bermi/akelos
 /**
  * @deprecated
  * @uses  AkDebug::get_object_info
  */
 static function get_object_info($object, $include_inherited_info = false)
 {
     Ak::deprecateMethod(__METHOD__, 'AkDebug::get_object_info()');
     return AkDebug::get_object_info($object, $include_inherited_info);
 }