Skip to content

Commit f0045f7

Browse files
committed
Apply fixes from StyleCI
1 parent 2c1a3c6 commit f0045f7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Services/DataTable.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -622,12 +622,13 @@ public function pdf()
622622
* PDF version of the table using print preview blade template.
623623
*
624624
* @return \Illuminate\Http\Response
625+
*
625626
* @throws \Yajra\DataTables\Exceptions\Exception
626627
*/
627628
public function snappyPdf(): Response
628629
{
629630
if (! class_exists(PdfWrapper::class)) {
630-
throw new Exception("You need to install barryvdh/laravel-snappy to be able to use this feature.");
631+
throw new Exception('You need to install barryvdh/laravel-snappy to be able to use this feature.');
631632
}
632633

633634
/** @var \Barryvdh\Snappy\PdfWrapper $snappy */

0 commit comments

Comments
 (0)