Automated formatting changes

This commit is contained in:
Formatter Bot 2022-04-10 16:07:17 +00:00
parent 0aec2ecf02
commit 3edc555b4e
3 changed files with 16 additions and 16 deletions

View File

@ -59,7 +59,7 @@ final class ProjectAttributeTypeMapper extends DataMapperFactory
'mapper' => ProjectAttributeValueMapper::class,
'table' => 'projectmanagement_project_attr_default',
'self' => 'projectmanagement_project_attr_default_type',
'external' => 'projectmanagement_project_attr_default_value'
'external' => 'projectmanagement_project_attr_default_value',
],
];

View File

@ -45,9 +45,9 @@ final class ProjectMapperTest extends \PHPUnit\Framework\TestCase
$money = new Money();
$money->setString('1.23');
$project->budgetCosts = $money;
$project->budgetEarnings = $money;
$project->actualCosts = $money;
$project->budgetCosts = $money;
$project->budgetEarnings = $money;
$project->actualCosts = $money;
$project->actualEarnings = $money;
$task = new Task();

View File

@ -174,19 +174,19 @@ final class ProjectTest extends \PHPUnit\Framework\TestCase
self::assertEquals(
[
'id' => 0,
'start' => $this->project->start,
'end' => $this->project->end,
'name' => 'Name',
'description' => 'Description',
'budgetCosts' => new Money(),
'budgetEarnings' => new Money(),
'actualCosts' => new Money(),
'id' => 0,
'start' => $this->project->start,
'end' => $this->project->end,
'name' => 'Name',
'description' => 'Description',
'budgetCosts' => new Money(),
'budgetEarnings' => new Money(),
'actualCosts' => new Money(),
'actualEarnings' => new Money(),
'tasks' => [],
'media' => [],
'progress' => 10,
'progressType' => ProgressType::TASKS,
'tasks' => [],
'media' => [],
'progress' => 10,
'progressType' => ProgressType::TASKS,
],
$serialized
);