Commit fa6489be authored by Taylor Otwell's avatar Taylor Otwell

remove comment bloat from string class.

parent d55a5e72
...@@ -8,9 +8,6 @@ class Str { ...@@ -8,9 +8,6 @@ class Str {
* <code> * <code>
* // Convert a string to lowercase * // Convert a string to lowercase
* echo Str::lower('STOP YELLING'); * echo Str::lower('STOP YELLING');
*
* // Convert a UTF-8 string to lowercase
* echo Str::lower('Τάχιστη');
* </code> * </code>
* *
* @param string $value * @param string $value
...@@ -32,9 +29,6 @@ class Str { ...@@ -32,9 +29,6 @@ class Str {
* <code> * <code>
* // Convert a string to uppercase * // Convert a string to uppercase
* echo Str::upper('speak louder'); * echo Str::upper('speak louder');
*
* // Convert a UTF-8 string to uppercase
* echo Str::upper('Τάχιστη');
* </code> * </code>
* *
* @param string $value * @param string $value
...@@ -56,9 +50,6 @@ class Str { ...@@ -56,9 +50,6 @@ class Str {
* <code> * <code>
* // Convert a string to title case * // Convert a string to title case
* echo Str::title('taylor otwell'); * echo Str::title('taylor otwell');
*
* // Convert a UTF-8 string to title case
* echo Str::title('Τάχιστη αλώπηξ');
* </code> * </code>
* *
* @param string $value * @param string $value
...@@ -80,9 +71,6 @@ class Str { ...@@ -80,9 +71,6 @@ class Str {
* <code> * <code>
* // Get the length of a string * // Get the length of a string
* echo Str::length('taylor otwell'); * echo Str::length('taylor otwell');
*
* // Get the length of a UTF-8 string
* echo Str::length('Τάχιστη αλώπηξ');
* </code> * </code>
* *
* @param string $value * @param string $value
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment