소스 검색

Updated PhpDoc for tests bugfix

Yury Kozyrev 10 년 전
부모
커밋
385dd6add2
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      tests/JMS/Serializer/Tests/Serializer/XmlSerializationTest.php

+ 5 - 0
tests/JMS/Serializer/Tests/Serializer/XmlSerializationTest.php

@@ -274,6 +274,11 @@ class XmlSerializationTest extends BaseSerializationTest
         return (string) reset($nodes);
     }
     
+    /**
+     * Whether or not PHP internalSubset bug is fixed in current version
+     * @return boolean 
+     * @link https://bugs.php.net/bug.php?id=67081
+     **/
     private function isBugFixedPhpVersion()
     {
         return (PHP_VERSION_ID >= 50513) || (PHP_VERSION_ID >= 50429 && PHP_VERSION_ID < 50500);