Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
antonioribeiro committed Jan 26, 2019
1 parent 5aa638a commit ba02e67
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Vendor/Laravel/ServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class ServiceProvider extends PragmaRXServiceProvider

protected $packageNameCapitalized = 'Tracker';

protected $repositoryMangerIsBooted = false;
protected $repositoryManagerIsBooted = false;

/**
* Indicates if loading of the provider is deferred.
Expand Down Expand Up @@ -95,7 +95,7 @@ public function boot()
*/
public function isFullyBooted()
{
return $this->repositoryMangerIsBooted;
return $this->repositoryManagerIsBooted;
}

/**
Expand Down Expand Up @@ -347,7 +347,7 @@ public function registerRepositories()
new LanguageDetect()
);

$this->repositoryMangerIsBooted = true;
$this->repositoryManagerIsBooted = true;

return $manager;
});
Expand Down

0 comments on commit ba02e67

Please sign in to comment.