File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ public function __construct(
4141
4242 public function generateFilename (): string
4343 {
44- return Str::slug ("{$ this ->name }_ {$ this ->serial_number }" , separator: '_ ' ) . " .pdf " ;
44+ return Str::slug ("{$ this ->name }_ {$ this ->serial_number }" , separator: '_ ' ). ' .pdf ' ;
4545 }
4646
4747 public function getFilename (): string
@@ -54,7 +54,7 @@ public function getLogo(): string
5454 $ type = pathinfo ($ this ->logo , PATHINFO_EXTENSION );
5555 $ data = file_get_contents ($ this ->logo );
5656
57- return 'data:image/ ' . $ type . ';base64, ' . base64_encode ($ data );
57+ return 'data:image/ ' . $ type. ';base64, ' . base64_encode ($ data );
5858 }
5959
6060 /**
@@ -96,7 +96,7 @@ public function totalTaxAmount(): Money
9696
9797 public function totalDiscountAmount (): Money
9898 {
99- if (!$ this ->discounts ) {
99+ if (! $ this ->discounts ) {
100100 return Money::of (0 , $ this ->subTotalAmount ()->getCurrency ());
101101 }
102102
You can’t perform that action at this time.
0 commit comments