1
0
mirror of https://github.com/fzaninotto/Faker.git synced 2025-04-21 16:01:56 +02:00

Add space after SWITCH keyword

This commit is contained in:
Leon Koole 2019-08-27 22:56:19 +02:00
parent c4cc933549
commit 5373dcd2f8

View File

@ -63,7 +63,7 @@ class Company extends \Faker\Provider\Company
$lastName = $this->generator->lastName;
$determinator = static::numberBetween(0, 2);
switch($determinator) {
switch ($determinator) {
case 0:
$companyName = static::randomElement(static::$product) . ' ' . static::randomElement(static::$type);
break;