Completed
Push — master ( 6ac666...2075e0 )
by f
01:34
created
src/S.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
     /**
143 143
      * @param string $string
144 144
      * @param string $char
145
-     * @return int|false
145
+     * @return integer|null
146 146
      */
147 147
     public static function findFirstPosition($string, $char)
148 148
     {
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
     /**
157 157
      * @param string $string
158 158
      * @param string $char
159
-     * @return int|false
159
+     * @return integer|null
160 160
      */
161 161
     public static function findLastPosition($string, $char)
162 162
     {
@@ -230,6 +230,9 @@  discard block
 block discarded – undo
230 230
         return $string;
231 231
     }
232 232
 
233
+    /**
234
+     * @param string $string
235
+     */
233 236
     public static function stringContains($string, array $variants)
234 237
     {
235 238
         foreach ($variants as $variant) {
Please login to merge, or discard this patch.