Skip to content

Commit

Permalink
typo errors fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Raza9798 committed Jun 17, 2024
1 parent 1d1581b commit 7b5fbe8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Controller/ActivityController.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
class ActivityController extends Controller
{
public function setup(){
File::mkdir(app_path('Traits'));
File::makeDirectory(app_path('Traits'));
$stubPath = dirname(__DIR__, 2) . '/src/stubs/config/HasActivityLog.stub';
$traitPath = app_path('Traits/Activitylog.php');
$traitPath = app_path('Traits/HasActivityLog.php');
$stubContent = File::get($stubPath);
if (!File::exists($traitPath)) {
File::put($traitPath, $stubContent);
Expand Down
2 changes: 1 addition & 1 deletion src/config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@

class Config
{
const VERSION = '1.8';
const VERSION = '1.8.1';
}

0 comments on commit 7b5fbe8

Please sign in to comment.