Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: changed concrete config class to interface #1478

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

- fix: changed dependency from `Illuminate\Config\Repository` to Config interface by @nai4rus
- feat: assert `view-string` when using `view()->exists()` by @mad-briller
- feat: freed `joinSub` to allow models to join other models by @harmenjanssen in https://github.com/nunomaduro/larastan/pull/1352
- feat: updated return type of the Request::header method by @mad-briller
Expand Down
2 changes: 1 addition & 1 deletion src/Concerns/LoadsAuthModel.php
Expand Up @@ -4,7 +4,7 @@

namespace NunoMaduro\Larastan\Concerns;

use Illuminate\Config\Repository as ConfigRepository;
use Illuminate\Contracts\Config\Repository as ConfigRepository;

trait LoadsAuthModel
{
Expand Down