Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Mar 10, 2022
1 parent 90fb148 commit 686ebe2
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 686ebe2

Please sign in to comment.