Fix for regression

This commit is contained in:
David Bomba 2020-12-03 11:05:22 +11:00
parent 8dfdfa1a6a
commit e772a2b638
2 changed files with 2 additions and 1 deletions

View File

@ -146,7 +146,7 @@ class CreateEntityPdf implements ShouldQueue
->build(); ->build();
//todo - move this to the client creation stage so we don't keep hitting this unnecessarily //todo - move this to the client creation stage so we don't keep hitting this unnecessarily
Storage::makeDirectory($path, 0775); // Storage::makeDirectory($path, 0775);
$pdf = null; $pdf = null;

View File

@ -33,6 +33,7 @@ use Checkout\Library\Exceptions\CheckoutHttpException;
use Exception; use Exception;
use Illuminate\Http\Request; use Illuminate\Http\Request;
use Illuminate\Support\Carbon; use Illuminate\Support\Carbon;
use Illuminate\Support\Str;
/** /**
* Class BaseDriver. * Class BaseDriver.