Completed
Push — pulls/3/auto-index-sort ( 612f1d...cde0ad )
by Daniel
08:43
created
thirdparty/Zend/Locale/Data.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -275,7 +275,7 @@  discard block
 block discarded – undo
275 275
     /**
276 276
      * Internal function for checking the locale
277 277
      *
278
-     * @param string|Zend_Locale $locale Locale to check
278
+     * @param string $locale Locale to check
279 279
      * @return string
280 280
      */
281 281
     private static function _checkLocale($locale)
@@ -1501,7 +1501,6 @@  discard block
 block discarded – undo
1501 1501
     /**
1502 1502
      * Internal method to check if the given cache supports tags
1503 1503
      *
1504
-     * @param Zend_Cache $cache
1505 1504
      */
1506 1505
     private static function _getTagSupportForCache()
1507 1506
     {
Please login to merge, or discard this patch.
thirdparty/Zend/Locale/Format.php 1 patch
Doc Comments   +4 added lines, -5 removed lines patch added patch discarded remove patch
@@ -292,7 +292,6 @@  discard block
 block discarded – undo
292 292
      * ##0.00 -> 12345.12345 -> 12345.12
293 293
      * ##,##0.00 -> 12345.12345 -> 12,345.12
294 294
      *
295
-     * @param   string  $input    Localized number string
296 295
      * @param   array   $options  Options: number_format, locale, precision. See {@link setOptions()} for details.
297 296
      * @return  string  locale formatted number
298 297
      * @throws Zend_Locale_Exception
@@ -488,6 +487,9 @@  discard block
 block discarded – undo
488 487
         return (string) $format;
489 488
     }
490 489
 
490
+    /**
491
+     * @param string $value
492
+     */
491 493
     private static function _seperateFormat($format, $value, $precision)
492 494
     {
493 495
         if (iconv_strpos($format, ';') !== false) {
@@ -644,7 +646,6 @@  discard block
 block discarded – undo
644 646
     /**
645 647
      * Alias for getNumber
646 648
      *
647
-     * @param   string  $value    Number to localize
648 649
      * @param   array   $options  Options: locale, precision. See {@link setOptions()} for details.
649 650
      * @return  float
650 651
      */
@@ -671,7 +672,6 @@  discard block
 block discarded – undo
671 672
      * Returns if a float was found
672 673
      * Alias for isNumber()
673 674
      *
674
-     * @param   string  $input    Localized number string
675 675
      * @param   array   $options  Options: locale. See {@link setOptions()} for details.
676 676
      * @return  boolean           Returns true if a number was found
677 677
      */
@@ -719,7 +719,6 @@  discard block
 block discarded – undo
719 719
     /**
720 720
      * Returns if a integer was found
721 721
      *
722
-     * @param   string  $input    Localized number string
723 722
      * @param   array   $options  Options: locale. See {@link setOptions()} for details.
724 723
      * @return  boolean           Returns true if a integer was found
725 724
      */
@@ -1103,7 +1102,7 @@  discard block
 block discarded – undo
1103 1102
      * @param  string  $number     Date string (modified)
1104 1103
      * @param  array   $monthlist  List of month names
1105 1104
      *
1106
-     * @return int|false           Position of replaced string (false if nothing replaced)
1105
+     * @return string           Position of replaced string (false if nothing replaced)
1107 1106
      */
1108 1107
     protected static function _replaceMonth(&$number, $monthlist)
1109 1108
     {
Please login to merge, or discard this patch.
thirdparty/Zend/Locale/Math.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,6 +61,8 @@  discard block
 block discarded – undo
61 61
      *   round(0.36665, 4);
62 62
      * then try:
63 63
      *   Zend_Locale_Math::round('639.795', 2);
64
+     * @param string $op1
65
+     * @return integer
64 66
      */
65 67
     public static function round($op1, $precision = 0)
66 68
     {
@@ -337,7 +339,7 @@  discard block
 block discarded – undo
337 339
      * @param  string  $op1
338 340
      * @param  string  $op2
339 341
      * @param  integer $scale
340
-     * @return string
342
+     * @return integer
341 343
      */
342 344
     public static function Comp($op1, $op2, $scale = null)
343 345
     {
Please login to merge, or discard this patch.
thirdparty/Zend/Locale/Math/PhpMath.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -54,6 +54,11 @@  discard block
 block discarded – undo
54 54
     public static $defaultPrecision;
55 55
 
56 56
 
57
+    /**
58
+     * @param string $op1
59
+     * @param string $op2
60
+     * @param integer $scale
61
+     */
57 62
     public static function Add($op1, $op2, $scale = null)
58 63
     {
59 64
         if ($scale === null) {
@@ -77,6 +82,11 @@  discard block
 block discarded – undo
77 82
         return self::round(self::normalize($result), $scale);
78 83
     }
79 84
 
85
+    /**
86
+     * @param string $op1
87
+     * @param string $op2
88
+     * @param integer $scale
89
+     */
80 90
     public static function Sub($op1, $op2, $scale = null)
81 91
     {
82 92
         if ($scale === null) {
Please login to merge, or discard this patch.
thirdparty/Zend/Translate/Adapter.php 1 patch
Doc Comments   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -563,7 +563,7 @@  discard block
 block discarded – undo
563 563
      * Load translation data
564 564
      *
565 565
      * @param  mixed              $data
566
-     * @param  string|Zend_Locale $locale
566
+     * @param  string $locale
567 567
      * @param  array              $options (optional)
568 568
      * @return array
569 569
      */
@@ -577,7 +577,6 @@  discard block
 block discarded – undo
577 577
      * language is replaced and added otherwise
578 578
      *
579 579
      * @see    Zend_Locale
580
-     * @param  array|Zend_Config $content Translation data to add
581 580
      * @throws Zend_Translate_Exception
582 581
      * @return Zend_Translate_Adapter Provides fluent interface
583 582
      */
@@ -981,7 +980,6 @@  discard block
 block discarded – undo
981 980
     /**
982 981
      * Internal method to check if the given cache supports tags
983 982
      *
984
-     * @param Zend_Cache $cache
985 983
      */
986 984
     private static function _getTagSupportForCache()
987 985
     {
Please login to merge, or discard this patch.
thirdparty/Zend/Translate/Adapter/Csv.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
      * @param  string|array  $filename  Filename and full path to the translation source
77 77
      * @param  string        $locale    Locale/Language to add data for, identical with locale identifier,
78 78
      *                                  see Zend_Locale for more information
79
-     * @param  array         $option    OPTIONAL Options to use
79
+     * @param  array         $options    OPTIONAL Options to use
80 80
      * @return array
81 81
      */
82 82
     protected function _loadTranslationData($filename, $locale, array $options = array())
Please login to merge, or discard this patch.
thirdparty/Zend/Translate/Adapter/Gettext.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
      * @param  string  $filename  MO file to add, full path must be given for access
59 59
      * @param  string  $locale    New Locale/Language to set, identical with locale identifier,
60 60
      *                            see Zend_Locale for more information
61
-     * @param  array   $option    OPTIONAL Options to use
61
+     * @param  array   $options    OPTIONAL Options to use
62 62
      * @throws Zend_Translation_Exception
63 63
      * @return array
64 64
      */
Please login to merge, or discard this patch.
thirdparty/Zend/Translate/Adapter/Qt.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      * @param  string  $locale    Locale/Language to add data for, identical with locale identifier,
53 53
      *                            see Zend_Locale for more information
54 54
      * @param  string  $filename  QT file to add, full path must be given for access
55
-     * @param  array   $option    OPTIONAL Options to use
55
+     * @param  array   $options    OPTIONAL Options to use
56 56
      * @throws Zend_Translation_Exception
57 57
      * @return array
58 58
      */
@@ -137,6 +137,9 @@  discard block
 block discarded – undo
137 137
         }
138 138
     }
139 139
 
140
+    /**
141
+     * @param string $filename
142
+     */
140 143
     private function _findEncoding($filename)
141 144
     {
142 145
         $file = file_get_contents($filename, null, null, 0, 100);
Please login to merge, or discard this patch.
thirdparty/Zend/Translate/Adapter/Tbx.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      * @param  string  $filename  TBX file to add, full path must be given for access
50 50
      * @param  string  $locale    Locale has no effect for TBX because TBX defines all languages within
51 51
      *                            the source file
52
-     * @param  array   $option    OPTIONAL Options to use
52
+     * @param  array   $options    OPTIONAL Options to use
53 53
      * @throws Zend_Translation_Exception
54 54
      * @return array
55 55
      */
@@ -142,6 +142,9 @@  discard block
 block discarded – undo
142 142
         }
143 143
     }
144 144
 
145
+    /**
146
+     * @param string $filename
147
+     */
145 148
     private function _findEncoding($filename)
146 149
     {
147 150
         $file = file_get_contents($filename, null, null, 0, 100);
Please login to merge, or discard this patch.