@@ -54,6 +54,11 @@ discard block |
||
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 |
||
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) { |
@@ -563,7 +563,7 @@ discard block |
||
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 |
||
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 |
||
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 | { |
@@ -76,7 +76,7 @@ |
||
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()) |
@@ -58,7 +58,7 @@ |
||
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 | */ |
@@ -52,7 +52,7 @@ discard block |
||
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 |
||
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); |
@@ -49,7 +49,7 @@ discard block |
||
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 |
||
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); |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | * @param string $filename TMX file to add, full path must be given for access |
51 | 51 | * @param string $locale Locale has no effect for TMX because TMX defines all languages within |
52 | 52 | * the source file |
53 | - * @param array $option OPTIONAL Options to use |
|
53 | + * @param array $options OPTIONAL Options to use |
|
54 | 54 | * @throws Zend_Translation_Exception |
55 | 55 | * @return array |
56 | 56 | */ |
@@ -207,7 +207,7 @@ discard block |
||
207 | 207 | /** |
208 | 208 | * Internal method, detects the encoding of the xml file |
209 | 209 | * |
210 | - * @param string $name Filename |
|
210 | + * @param string $filename |
|
211 | 211 | * @return string Encoding |
212 | 212 | */ |
213 | 213 | protected function _findEncoding($filename) |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | * @param string $locale Locale/Language to add data for, identical with locale identifier, |
55 | 55 | * see Zend_Locale for more information |
56 | 56 | * @param string $filename XLIFF file to add, full path must be given for access |
57 | - * @param array $option OPTIONAL Options to use |
|
57 | + * @param array $options OPTIONAL Options to use |
|
58 | 58 | * @throws Zend_Translation_Exception |
59 | 59 | * @return array |
60 | 60 | */ |
@@ -206,6 +206,9 @@ discard block |
||
206 | 206 | } |
207 | 207 | } |
208 | 208 | |
209 | + /** |
|
210 | + * @param string $filename |
|
211 | + */ |
|
209 | 212 | private function _findEncoding($filename) |
210 | 213 | { |
211 | 214 | $file = file_get_contents($filename, null, null, 0, 100); |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | * @param string $locale Locale/Language to add data for, identical with locale identifier, |
49 | 49 | * see Zend_Locale for more information |
50 | 50 | * @param string $filename XMLTM file to add, full path must be given for access |
51 | - * @param array $option OPTIONAL Options to use |
|
51 | + * @param array $options OPTIONAL Options to use |
|
52 | 52 | * @throws Zend_Translation_Exception |
53 | 53 | * @return array |
54 | 54 | */ |
@@ -116,6 +116,9 @@ discard block |
||
116 | 116 | } |
117 | 117 | } |
118 | 118 | |
119 | + /** |
|
120 | + * @param string $filename |
|
121 | + */ |
|
119 | 122 | private function _findEncoding($filename) |
120 | 123 | { |
121 | 124 | $file = file_get_contents($filename, null, null, 0, 100); |