fixes for 1.15 (#2704)

This commit is contained in:
Kevin Papst
2021-08-08 12:38:19 +02:00
committed by GitHub
parent b2d3272151
commit c063aed867
19 changed files with 203 additions and 193 deletions

View File

@@ -98,9 +98,9 @@ final class ProjectFixtures implements TestFixture
$visible = $this->isVisible;
}
$project = new Project();
$project->setName($faker->catchPhrase . ($visible ? '' : ' (x)'));
$project->setName($faker->company() . ($visible ? '' : ' (x)'));
$project->setBudget(rand(0, 10000));
$project->setComment($faker->text);
$project->setComment($faker->text());
$project->setCustomer($customers[array_rand($customers)]);
$project->setVisible($visible);