comparison vendor/zendframework/zend-feed/src/Writer/Writer.php @ 5:12f9dff5fda9 tip

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:34:47 +0100
parents 5311817fb629
children
comparison
equal deleted inserted replaced
4:a9cd425dd02b 5:12f9dff5fda9
203 ), 203 ),
204 \E_USER_NOTICE 204 \E_USER_NOTICE
205 ); 205 );
206 } 206 }
207 207
208 /**
209 * @deprecated This method is deprecated and will be removed with version 3.0
210 * Use PHP's lcfirst function instead. @see https://php.net/manual/function.lcfirst.php
211 * @param string $str
212 * @return string
213 */
208 public static function lcfirst($str) 214 public static function lcfirst($str)
209 { 215 {
210 $str[0] = strtolower($str[0]); 216 return lcfirst($str);
211 return $str;
212 } 217 }
213 218
214 /** 219 /**
215 * Does the extension manager have the named extension? 220 * Does the extension manager have the named extension?
216 * 221 *