Use PSR-12 code style

This commit is contained in:
James Cole
2022-10-30 14:24:10 +01:00
parent 1667b88dcd
commit 64ff5eed27
28 changed files with 96 additions and 129 deletions

View File

@@ -37,7 +37,8 @@ use Log;
*/
class BillFactory
{
use BillServiceTrait, CreatesObjectGroups;
use BillServiceTrait;
use CreatesObjectGroups;
private User $user;
@@ -129,7 +130,6 @@ class BillFactory
}
return $bill;
}
/**
@@ -149,5 +149,4 @@ class BillFactory
{
$this->user = $user;
}
}