Completed
Push — master ( f54e01...0a7c72 )
by f
02:19
created
src/Russian/NounPluralization.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 
60 60
     /**
61 61
      * Склонение существительного для сочетания с числом (кол-вом предметов).
62
-     * @param int|string $count Количество предметов
62
+     * @param integer $count Количество предметов
63 63
      * @param string|int $word Название предмета
64 64
      * @param bool $animateness Признак одушевленности
65 65
      * @return string
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
     /**
129 129
      * @param $word
130 130
      * @param bool $animateness
131
-     * @return array
131
+     * @return string
132 132
      */
133 133
     public static function getCases($word, $animateness = false)
134 134
     {
@@ -156,8 +156,8 @@  discard block
 block discarded – undo
156 156
 
157 157
     /**
158 158
      * Склонение обычных существительных.
159
-     * @param $word
160
-     * @param $animateness
159
+     * @param string|false $word
160
+     * @param boolean $animateness
161 161
      * @return array
162 162
      */
163 163
     protected static function declinateSubstative($word, $animateness)
@@ -244,8 +244,8 @@  discard block
 block discarded – undo
244 244
     /**
245 245
      * Склонение существительных, образованных от прилагательных и причастий.
246 246
      * Rules are from http://rusgram.narod.ru/1216-1231.html
247
-     * @param $word
248
-     * @param $animateness
247
+     * @param string|false $word
248
+     * @param boolean $animateness
249 249
      * @return array
250 250
      */
251 251
     protected static function declinateAdjective($word, $animateness)
Please login to merge, or discard this patch.