mirror of
https://github.com/Karaka-Management/oms-ProjectManagement.git
synced 2026-01-11 15:48:41 +00:00
Automated formatting changes
This commit is contained in:
parent
0aec2ecf02
commit
3edc555b4e
|
|
@ -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',
|
||||
],
|
||||
];
|
||||
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
|
|
|||
|
|
@ -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
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user