release version 2.0.11

This commit is contained in:
Carsten Brandt
2017-02-01 17:46:29 +01:00
parent bd59d8f527
commit c19b2f7dc8
45 changed files with 80 additions and 69 deletions

View File

@ -663,7 +663,7 @@ class BaseHtml
* The following special options are recognized:
*
* - `doubleEncode`: whether to double encode HTML entities in `$value`. If `false`, HTML entities in `$value` will not
* be further encoded. This option is available since version 2.0.11.
* be further encoded. This option is available since version 2.0.11.
*
* @return string the generated text area tag
*/

View File

@ -198,7 +198,7 @@ class BaseStringHelper
*
* @param string $string Input string
* @param string $with Part to search inside the $string
* @param bool $caseSensitive Case sensitive search. Default is true. When case sensitive is enabled, $with must exactly match the starting of the string in order to get a true value.
* @param bool $caseSensitive Case sensitive search. Default is true. When case sensitive is enabled, $with must exactly match the starting of the string in order to get a true value.
* @return bool Returns true if first input starts with second input, false otherwise
*/
public static function startsWith($string, $with, $caseSensitive = true)