mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-05 17:14:03 +00:00
code style
This commit is contained in:
parent
2ae984f176
commit
798a4a1f5e
1 changed files with 1 additions and 1 deletions
|
|
@ -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"));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue