Просмотр исходного кода

Minor fix for r18951 update. ZF-7316 related.

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@18952 44c647ce-9c0f-0410-b52a-842ac1e357ba
alexander 16 лет назад
Родитель
Сommit
691c7fe370

+ 1 - 1
tests/Zend/CodeGenerator/Php/DocblockTest.php

@@ -79,7 +79,7 @@ class Zend_CodeGenerator_Php_DocblockTest extends PHPUnit_Framework_TestCase
 
         $target = <<<EOS
 /**
- * @blah
+ * @blah 
  * @param string
  * @return int
  */

+ 6 - 6
tests/Zend/CodeGenerator/Php/FileTest.php

@@ -131,9 +131,9 @@ EOS;
 <?php
 /**
  * File header here
- *
+ * 
  * @author Ralph Schindler <ralph.schindler@zend.com>
- *
+ * 
  */
 
 
@@ -141,18 +141,18 @@ EOS;
 
 /**
  * class docblock
- *
+ * 
  * @package Zend_Reflection_TestSampleSingleClass
- *
+ * 
  */
 class Zend_Reflection_TestSampleSingleClass
 {
 
     /**
      * Enter description here...
-     *
+     * 
      * @return bool
-     *
+     * 
      */
     public function someMethod()
     {

+ 2 - 2
tests/Zend/CodeGenerator/Php/MethodTest.php

@@ -102,9 +102,9 @@ class Zend_CodeGenerator_Php_MethodTest extends PHPUnit_Framework_TestCase
         $target = <<<EOS
     /**
      * Enter description here...
-     *
+     * 
      * @return bool
-     *
+     * 
      */
     public function someMethod()
     {