Skip to content

Commit

Permalink
Remove unnecessary php docs (#194)
Browse files Browse the repository at this point in the history
* Remove unnecessary php docs

* Update Web2printController.php
  • Loading branch information
blankse committed Jun 28, 2024
1 parent c1ffa8f commit dcb9f0b
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions src/Controller/Web2printController.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,7 @@

class Web2printController extends FrontendController
{
/**
*
* @return Response
*/
public function defaultAction(Request $request)
public function defaultAction(Request $request): Response
{
$paramsBag = [
'document' => $this->document
Expand All @@ -46,12 +42,9 @@ public function defaultAction(Request $request)
}

/**
*
* @return Response
*
* @throws \Exception
*/
public function containerAction(Request $request)
public function containerAction(Request $request): Response
{
$paramsBag = [
'document' => $this->document
Expand Down

0 comments on commit dcb9f0b

Please sign in to comment.