示例#1
0
文件: MetaTest.php 项目: jasny/meta
 protected function createMeta(\Reflector $refl)
 {
     $factory = new Factory\Annotations();
     return $factory->create($refl);
 }
示例#2
0
 /**
  * Get metadata
  *
  * @return Meta
  */
 public static function meta()
 {
     $factory = new Factory\Annotations();
     $refl = new ReflectionClass(get_called_class());
     return $factory->create($refl);
 }