當前位置: 首頁>>代碼示例>>PHP>>正文


PHP AnnotationRegistry::loadAnnotationClass方法代碼示例

本文整理匯總了PHP中Doctrine\Common\Annotations\AnnotationRegistry::loadAnnotationClass方法的典型用法代碼示例。如果您正苦於以下問題:PHP AnnotationRegistry::loadAnnotationClass方法的具體用法?PHP AnnotationRegistry::loadAnnotationClass怎麽用?PHP AnnotationRegistry::loadAnnotationClass使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Doctrine\Common\Annotations\AnnotationRegistry的用法示例。


在下文中一共展示了AnnotationRegistry::loadAnnotationClass方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: testBootRegistersAnnotationInLoader

 /**
  * Test that calling boot() registers our annotation in the AnnotationRegistry.
  *
  * @return void
  */
 public function testBootRegistersAnnotationInLoader()
 {
     $bundle = new TensideCoreBundle();
     AnnotationRegistry::reset();
     $this->assertFalse(AnnotationRegistry::loadAnnotationClass('Tenside\\CoreBundle\\Annotation\\ApiDescription'));
     $this->assertFalse(class_exists('Tenside\\CoreBundle\\Annotation\\ApiDescription', false));
     $bundle->boot();
     $this->assertFalse(AnnotationRegistry::loadAnnotationClass('NonExistant\\Annotation'));
     // Ensure the class does not get loaded by requiring another annotation.
     $this->assertFalse(class_exists('Tenside\\CoreBundle\\Annotation\\ApiDescription', false));
     $this->assertTrue(AnnotationRegistry::loadAnnotationClass('Tenside\\CoreBundle\\Annotation\\ApiDescription'));
     $this->assertTrue(class_exists('Tenside\\CoreBundle\\Annotation\\ApiDescription', false));
 }
開發者ID:tenside,項目名稱:core-bundle,代碼行數:18,代碼來源:TensideCoreBundleTest.php

示例2: classExists

 /**
  * Attempt to check if a class exists or not. This never goes through the PHP autoloading mechanism
  * but uses the {@link AnnotationRegistry} to load classes.
  *
  * @param string $fqcn
  * @return boolean
  */
 private function classExists($fqcn)
 {
     if (isset($this->classExists[$fqcn])) {
         return $this->classExists[$fqcn];
     }
     // first check if the class already exists, maybe loaded through another AnnotationReader
     if (class_exists($fqcn, false)) {
         return $this->classExists[$fqcn] = true;
     }
     // final check, does this class exist?
     return $this->classExists[$fqcn] = AnnotationRegistry::loadAnnotationClass($fqcn);
 }
開發者ID:laiello,項目名稱:masfletes,代碼行數:19,代碼來源:DocParser.php

示例3: annotationClass

 /**
  * Get annotation object
  *
  * @param string $name
  *
  * @return object
  * @throws Doctrine\Common\Annotations\AnnotationException
  */
 static function annotationClass($name)
 {
     if (!AnnotationRegistry::loadAnnotationClass($name)) {
         throw new \Doctrine\Common\Annotations\AnnotationException('Annotation ' . $name . ' - not exists');
     }
     return new $name();
 }
開發者ID:vspvt,項目名稱:kohana-annotations,代碼行數:15,代碼來源:Annotations.php


注:本文中的Doctrine\Common\Annotations\AnnotationRegistry::loadAnnotationClass方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。