Skip to content

Commit

Permalink
fix PHPDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
klimov-paul committed Mar 11, 2020
1 parent a6b09fd commit 90240a5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Providers/AbstractPersistentConfigServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@
* namespace App\Providers;
*
* use Illuminatech\Config\Providers\AbstractPersistentConfigServiceProvider;
* use Illuminatech\Config\StorageContact;
* use Illuminatech\Config\StorageContract;
* use Illuminatech\Config\StorageDb;
*
* class PersistentConfigServiceProvider extends AbstractPersistentConfigServiceProvider
* {
* protected function storage(): StorageContact
* protected function storage(): StorageContract
* {
* return (new StorageDb($this->app->make('db.connection')));
* }
Expand Down
2 changes: 1 addition & 1 deletion src/StorageContract.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
namespace Illuminatech\Config;

/**
* StorageContact defines config persistent storage interface.
* StorageContract defines config persistent storage interface.
*
* @author Paul Klimov <klimov.paul@gmail.com>
* @since 1.0
Expand Down

0 comments on commit 90240a5

Please sign in to comment.