1
0
mirror of https://github.com/danielstjules/Stringy.git synced 2025-08-15 01:34:03 +02:00

Uniformization in docblocks

This commit is contained in:
vlakoff
2015-02-03 11:10:27 +01:00
parent 0aa476d44c
commit 2bd4be60bb
2 changed files with 3 additions and 3 deletions

View File

@@ -170,7 +170,7 @@ class StaticStringy
* unless instructed otherwise. * unless instructed otherwise.
* *
* @param string $str A string with non-ASCII characters * @param string $str A string with non-ASCII characters
* @param bool $removeUnsupported Whether to remove or not the unsupported characters * @param bool $removeUnsupported Whether or not to remove the unsupported characters
* @return string A string containing only ASCII characters * @return string A string containing only ASCII characters
*/ */
public static function toAscii($str, $removeUnsupported = true) public static function toAscii($str, $removeUnsupported = true)

View File

@@ -422,7 +422,7 @@ class Stringy implements \Countable, \IteratorAggregate, \ArrayAccess
* replaced with their closest ASCII counterparts, and the rest are removed * replaced with their closest ASCII counterparts, and the rest are removed
* unless instructed otherwise. * unless instructed otherwise.
* *
* @param bool $removeUnsupported Whether to remove or not the unsupported characters * @param bool $removeUnsupported Whether or not to remove the unsupported characters
* @return Stringy Object whose $str contains only ASCII characters * @return Stringy Object whose $str contains only ASCII characters
*/ */
public function toAscii($removeUnsupported = true) public function toAscii($removeUnsupported = true)