diff --git a/CHANGELOG.md b/CHANGELOG.md index cbb2c7cb6..bcc4a282e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/Concerns/LoadsAuthModel.php b/src/Concerns/LoadsAuthModel.php index 3ae86f132..ef5431445 100644 --- a/src/Concerns/LoadsAuthModel.php +++ b/src/Concerns/LoadsAuthModel.php @@ -4,7 +4,7 @@ namespace NunoMaduro\Larastan\Concerns; -use Illuminate\Config\Repository as ConfigRepository; +use Illuminate\Contracts\Config\Repository as ConfigRepository; trait LoadsAuthModel {