1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 17:14:03 +00:00

code style

This commit is contained in:
Samuel Štancl 2022-07-20 21:35:23 +02:00 committed by GitHub
parent 2ae984f176
commit 798a4a1f5e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,7 +18,7 @@ class TenantAssetsController extends Controller
public function asset($path = null) public function asset($path = null)
{ {
abort_if(is_null($path), 404); abort_if($path === null, 404);
try { try {
return response()->file(storage_path("app/public/$path")); return response()->file(storage_path("app/public/$path"));