File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ All notable changes to this project will be documented in this file.
10
10
- Handle PHP 8.1 deprecation warnings when passing ` null ` to ` new \ReflectionClass ` [ #1351 / mfn] ( https://github.com/barryvdh/laravel-ide-helper/pull/1351 )
11
11
- Fix issue where \Eloquent is not included when using write_mixin [ #1352 / Jefemy] ( https://github.com/barryvdh/laravel-ide-helper/pull/1352 )
12
12
- Fix model factory method arguments for Laravel >= 9 [ #1361 / wimski] ( https://github.com/barryvdh/laravel-ide-helper/pull/1361 )
13
+ - Improve return type of mock helper methods in tests [ #1405 / bentleyo] ( https://github.com/barryvdh/laravel-ide-helper/pull/1405 )
13
14
14
15
### Added
15
16
- Add support for custom casts that implement ` CastsInboundAttributes ` [ #1329 / sforward] ( https://github.com/barryvdh/laravel-ide-helper/pull/1329 )
Original file line number Diff line number Diff line change 28
28
]));
29
29
<?php endif ; ?>
30
30
31
+ override(\Illuminate\Foundation\Testing\Concerns\InteractsWithContainer::mock(0), map(["" => "@&\Mockery\MockInterface"]));
32
+ override(\Illuminate\Foundation\Testing\Concerns\InteractsWithContainer::partialMock(0), map(["" => "@&\Mockery\MockInterface"]));
33
+ override(\Illuminate\Foundation\Testing\Concerns\InteractsWithContainer::instance(0), type(1));
34
+ override(\Illuminate\Foundation\Testing\Concerns\InteractsWithContainer::spy(0), map(["" => "@&\Mockery\MockInterface"]));
31
35
override(\Illuminate\Support\Arr::add(0), type(0));
32
36
override(\Illuminate\Support\Arr::except(0), type(0));
33
37
override(\Illuminate\Support\Arr::first(0), elementType(0));
You can’t perform that action at this time.
0 commit comments