Skip to content

Commit

Permalink
fix: last error with php-stan and remove cache fil for cs-fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
fox-john committed Mar 23, 2023
1 parent eeb5ef7 commit 4d8d195
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ tests/php/coverage
config_*.xml
.php_cs.cache
.idea

1 change: 0 additions & 1 deletion .php-cs-fixer.cache

This file was deleted.

2 changes: 1 addition & 1 deletion src/Service/ExportService.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public function exportCustomerData(CustomerId $customerId, string $exportType)
case self::EXPORT_TYPE_PDF:
$this->loggerService->createLog($customerId->getValue(), LoggerService::REQUEST_TYPE_EXPORT_PDF, 0, 0, $customerFullName);

return $this->exportCustomerToPdf($customerId, $exportData);
$this->exportCustomerToPdf($customerId, $exportData);
break;
case self::EXPORT_TYPE_VIEWING:
$result = $exportData;
Expand Down

0 comments on commit 4d8d195

Please sign in to comment.