Skip to content

Commit

Permalink
Removed useless whitespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
TS committed Apr 6, 2024
1 parent b6332f1 commit 1558300
Showing 1 changed file with 27 additions and 27 deletions.
54 changes: 27 additions & 27 deletions src/Faker.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class Faker
* __construct
*
* @param array $options
*
*
* @return Faker
*/
public function __construct(array $options = [])
Expand Down Expand Up @@ -72,7 +72,7 @@ public function __construct(array $options = [])
* init
*
* @param array $options
*
*
* @return Faker
*/
public static function init(array $options = [])
Expand All @@ -86,7 +86,7 @@ public static function init(array $options = [])
*
* @param mixed $length
* @param mixed $first
*
*
* @return string
*/
public function word($length = null, $first = null, $suffixes = [])
Expand Down Expand Up @@ -115,7 +115,7 @@ public function word($length = null, $first = null, $suffixes = [])
* words
*
* @param mixed $count
*
*
* @return string
*/
public function words($count = 4, $glue = ' ', $min = 4, $max = 7, $first = null, $suffixes = [])
Expand All @@ -135,7 +135,7 @@ public function words($count = 4, $glue = ' ', $min = 4, $max = 7, $first = null
* sentence
*
* @param mixed $words
*
*
* @return string
*/
public function sentence($words = null)
Expand All @@ -154,7 +154,7 @@ public function sentence($words = null)
* @param mixed $max
* @param mixed $segments
* @param mixed $glue
*
*
* @return string
*/
public function repeat($chars = null, $min = 2, $max = 21, $segments = 1, $glue = '-')
Expand Down Expand Up @@ -187,7 +187,7 @@ public function repeat($chars = null, $min = 2, $max = 21, $segments = 1, $glue
* text
*
* @param int $sentences
*
*
* @return string
*/
public function text($sentences = 5, $min = 4, $max = 7)
Expand All @@ -208,7 +208,7 @@ public function text($sentences = 5, $min = 4, $max = 7)
* getRandomConsonant
*
* @param mixed $double
*
*
* @return string
*/
protected function getRandomConsonant($double = false)
Expand All @@ -228,7 +228,7 @@ protected function getRandomConsonant($double = false)
* getRandomVowel
*
* @param mixed $double
*
*
* @return string
*/
protected function getRandomVowel($double = false)
Expand All @@ -248,7 +248,7 @@ protected function getRandomVowel($double = false)
* getRandomNextChar
*
* @param mixed $prev
*
*
* @return string
*/
protected function getRandomNextChar($prev)
Expand All @@ -275,7 +275,7 @@ protected function getRandomNextChar($prev)
* isVowel
*
* @param mixed $char
*
*
* @return string
*/
protected function isVowel($char)
Expand All @@ -289,7 +289,7 @@ protected function isVowel($char)
*
* @param mixed $length
* @param mixed $first
*
*
* @return string
*/
public function firstname($min = 5, $max = 7, $first = null, $suffixes = [])
Expand All @@ -306,7 +306,7 @@ public function firstname($min = 5, $max = 7, $first = null, $suffixes = [])
*
* @param mixed $length
* @param mixed $first
*
*
* @return string
*/
public function lastname($min = 5, $max = 7, $first = null, $suffixes = [])
Expand All @@ -325,7 +325,7 @@ public function lastname($min = 5, $max = 7, $first = null, $suffixes = [])
* @param mixed $lengthFirst
* @param mixed $lengthLast
* @param mixed $reverse
*
*
* @return string
*/
public function fullname($lengthFirst = null, $lengthLast = null, $reverse = false)
Expand All @@ -349,7 +349,7 @@ public function fullname($lengthFirst = null, $lengthLast = null, $reverse = fal
*
* @param mixed $min
* @param mixed $max
*
*
* @return integer
*/
public function int($min = 0, $max = 10000)
Expand All @@ -361,8 +361,8 @@ public function int($min = 0, $max = 10000)
/**
* float
*
* @param int $precision
*
* @param int $precision
*
* @return float
*/
public function float($min = 0, $max = 10000, $precision = 2)
Expand All @@ -379,7 +379,7 @@ public function float($min = 0, $max = 10000, $precision = 2)
*
* @param mixed $min
* @param mixed $max
*
*
* @return boolean
*/
public function boolean()
Expand All @@ -393,7 +393,7 @@ public function boolean()
*
* @param mixed $mask
* @param mixed $input
*
*
* @return string
*/
public function mask($mask = '###-###-###', $input = 'ABCDEFGHJKLMNPRSTUVWXYZ0123456789')
Expand Down Expand Up @@ -441,10 +441,10 @@ public function password($min = 8, $max = 16, $segments = 2, $glue = '-')
/**
* pick
*
* @param mixed $items
* @param int $howmuch
* @param mixed $implode
*
* @param mixed $items
* @param int $howmuch
* @param mixed $implode
*
* @return array
*/
public function pick($items, $howmuch = 1, $implode = null)
Expand Down Expand Up @@ -475,10 +475,10 @@ public function pick($items, $howmuch = 1, $implode = null)
/**
* date
*
* @param string $min
* @param mixed $max
* @param string $format
*
* @param string $min
* @param mixed $max
* @param string $format
*
* @return string
*/
public function date($min = null, $max = null, $format = 'Y-m-d')
Expand Down

0 comments on commit 1558300

Please sign in to comment.