Skip to content

Commit

Permalink
chore: Run cs:fix
Browse files Browse the repository at this point in the history
Signed-off-by: Christopher Ng <[email protected]>
  • Loading branch information
Pytal committed Jul 12, 2024
1 parent ae6f383 commit e352136
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
4 changes: 1 addition & 3 deletions lib/BackgroundJob/TransferJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
use OCA\Guests\Db\Transfer;
use OCA\Guests\Db\TransferMapper;
use OCA\Guests\TransferService;
use OCP\AppFramework\Db\DoesNotExistException;
use OCP\AppFramework\Utility\ITimeFactory;
use OCP\BackgroundJob\QueuedJob;
use OCP\IURLGenerator;
Expand All @@ -33,8 +32,7 @@ public function __construct(
private TransferService $transferService,
private TransferMapper $transferMapper,
private LoggerInterface $logger,
)
{
) {
parent::__construct($time);
}

Expand Down
3 changes: 2 additions & 1 deletion lib/Hooks.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ public function __construct(
private UserBackend $userBackend,
private IAppContainer $container,
private TransferService $transferService,
) {}
) {
}

public function handlePostShare(ShareCreatedEvent $event): void {
$share = $event->getShare();
Expand Down
3 changes: 1 addition & 2 deletions lib/TransferService.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ public function __construct(
private IJobList $jobList,
private TransferMapper $transferMapper,
private LoggerInterface $logger,
)
{
) {
}

public function transfer(IUser $guestUser, IUser $user): void {
Expand Down

0 comments on commit e352136

Please sign in to comment.