Completed
Push — master ( a7efe8...75c8a4 )
by
unknown
18s queued 14s
created
src/EasyPdfServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/EasyPdf.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.