@@ -24,7 +24,7 @@ |
||
24 | 24 | public function register(): void |
25 | 25 | { |
26 | 26 | // Register the main class to use with the facade |
27 | - $this->app->singleton(EasyPdf::class, function () { |
|
27 | + $this->app->singleton(EasyPdf::class, function() { |
|
28 | 28 | return new EasyPdf(); |
29 | 29 | }); |
30 | 30 | } |
@@ -238,7 +238,7 @@ discard block |
||
238 | 238 | */ |
239 | 239 | public function setHeader($header = null) |
240 | 240 | { |
241 | - if (! is_null($header)) { |
|
241 | + if (!is_null($header)) { |
|
242 | 242 | $this->header = $header; |
243 | 243 | } |
244 | 244 | |
@@ -255,7 +255,7 @@ discard block |
||
255 | 255 | */ |
256 | 256 | public function setFooter($footer = null) |
257 | 257 | { |
258 | - if (! is_null($footer)) { |
|
258 | + if (!is_null($footer)) { |
|
259 | 259 | $this->footer = $footer; |
260 | 260 | } |
261 | 261 |