Skip to content

Commit 73b1012

Browse files
mfnlaravel-ide-helper
and
laravel-ide-helper
authored
chore: prepare 2.10.0 release (barryvdh#1207)
* chore: prepare 2.10.0 release * composer fix-style Co-authored-by: laravel-ide-helper <[email protected]>
1 parent ca94ffd commit 73b1012

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
[Next release](https://github.com/barryvdh/laravel-ide-helper/compare/v2.9.3...master)
5+
[Next release](https://github.com/barryvdh/laravel-ide-helper/compare/v2.10.0...master)
66
--------------
77

8+
2021-04-09, 2.10.0
9+
------------------
810
### Added
911
- Allowing Methods to be set or unset in ModelHooks [\#1198 / jenga201](https://github.com/barryvdh/laravel-ide-helper/pull/1198)\
1012
Note: the visibility of `\Barryvdh\LaravelIdeHelper\Console\ModelsCommand::setMethod` has been changed to **public**!
@@ -14,7 +16,6 @@ All notable changes to this project will be documented in this file.
1416

1517
2021-04-02, 2.9.3
1618
-----------------
17-
1819
### Fixed
1920
- Support both customized namespace factories as well as default resolvable ones [\#1201 / wimski](https://github.com/barryvdh/laravel-ide-helper/pull/1201)
2021

tests/Console/MetaCommand/MetaCommandTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ public function testCommand(): void
4141
public function testUnregisterAutoloader(): void
4242
{
4343
$current = spl_autoload_functions();
44-
$appended = function () { };
44+
$appended = function () {
45+
};
4546

46-
$this->app->bind('registers-autoloader', function () use ($appended)
47-
{
47+
$this->app->bind('registers-autoloader', function () use ($appended) {
4848
spl_autoload_register($appended);
4949
return new stdClass();
5050
});

0 commit comments

Comments
 (0)