Skip to content

Commit

Permalink
Fix namespace in LfmConfigHandler
Browse files Browse the repository at this point in the history
I got this error when using [**barryvdh/laravel-ide-helper**] to generate phpDoc.

`PHP Fatal error:  Class 'Unisharp\Laravelfilemanager\Handlers\ConfigHandler' not found in C:\....\app\Handlers\LfmConfigHandler.php on line 5`

=> fixed the namespace [ capital S and capital F]
  • Loading branch information
Oussama-Tn authored Feb 25, 2019
1 parent 64ac677 commit 371cde8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Handlers/LfmConfigHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace App\Handlers;

class LfmConfigHandler extends \Unisharp\Laravelfilemanager\Handlers\ConfigHandler
class LfmConfigHandler extends \UniSharp\LaravelFilemanager\Handlers\ConfigHandler
{
public function userField()
{
Expand Down

0 comments on commit 371cde8

Please sign in to comment.