Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Dec 27, 2023
1 parent f05b933 commit ce6f23b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Facades/Pdf.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use Spatie\LaravelPdf\FakePdf;

/**
* @mixin \Spatie\LaravelPdf\Pdf
* @mixin \Spatie\LaravelPdf\Pdf
*/
class Pdf extends Facade
{
Expand Down
8 changes: 4 additions & 4 deletions tests/PdfTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
'Header html',
'Body html',
]);
});
})->skipOnLinux();

it('can accept footer html', function () {
Pdf::html('Body html')
Expand All @@ -49,7 +49,7 @@
'Body html',
'Footer html',
]);
});
})->skipOnLinux();

it('can render header html', function () {
Pdf::html('Body html')
Expand All @@ -60,7 +60,7 @@
'This is the header HTML: Header title',
'Body html',
]);
});
})->skipOnLinux();

it('can render footer html', function () {
Pdf::html('Body html')
Expand All @@ -71,7 +71,7 @@
'This is the footer HTML: Footer title',
'Body html',
]);
});
})->skipOnLinux();

it('can create a pdf using the facade', function () {
Pdf::view('test')->save($this->targetPath);
Expand Down

0 comments on commit ce6f23b

Please sign in to comment.