Skip to content

Commit

Permalink
Merge pull request #32 from pratiksh404/analysis-Zlw256
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
pratiksh404 authored Mar 10, 2022
2 parents 90fb148 + 686ebe2 commit f759fba
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Http/Controllers/Admin/FontAwesomeController.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ class FontAwesomeController extends Controller
{
public function index()
{
$file_path = public_path() . "/adminetic/assets/js/icon-picker/iconpicker-1.5.0.json";
$fonts = file_exists($file_path) ? json_decode(file_get_contents($file_path), true) : null;
$file_path = public_path().'/adminetic/assets/js/icon-picker/iconpicker-1.5.0.json';
$fonts = file_exists($file_path) ? json_decode(file_get_contents($file_path), true) : null;

return view('adminetic::admin.fontawesome.index', compact('fonts'));
}
}

0 comments on commit f759fba

Please sign in to comment.