소스 검색

Added docblock to workaround php 5.3.6 bug, when classes without docblock sometimes return dockblock form other classes

Gamesh 13 년 전
부모
커밋
a083902210
1개의 변경된 파일9개의 추가작업 그리고 1개의 파일을 삭제
  1. 9 1
      lib/Gedmo/Sortable/Entity/Repository/SortableRepository.php

+ 9 - 1
lib/Gedmo/Sortable/Entity/Repository/SortableRepository.php

@@ -5,7 +5,15 @@ namespace Gedmo\Sortable\Entity\Repository;
 use Doctrine\ORM\EntityRepository,
     Doctrine\ORM\EntityManager,
     Doctrine\ORM\Mapping\ClassMetadata;
-
+/**
+ * Sortable Repository
+ *
+ * @author Lukas Botsch <lukas.botsch@gmail.com>
+ * @subpackage SortableRepository
+ * @package Gedmo.Sortable
+ * @link http://www.gediminasm.org
+ * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
+ */
 class SortableRepository extends EntityRepository
 {
     /**