1
0
mirror of https://github.com/danielstjules/Stringy.git synced 2025-08-12 16:24:00 +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

@@ -169,8 +169,8 @@ class StaticStringy
* replaced with their closest ASCII counterparts, and the rest are removed
* unless instructed otherwise.
*
* @param string $str A string with non-ASCII characters
* @param bool $removeUnsupported Whether to remove or not the unsupported characters
* @param string $str A string with non-ASCII characters
* @param bool $removeUnsupported Whether or not to remove the unsupported characters
* @return string A string containing only ASCII characters
*/
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
* 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
*/
public function toAscii($removeUnsupported = true)