mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-18 01:57:13 +00:00
chore: prepare 2.10.0 release (#1207)
* chore: prepare 2.10.0 release * composer fix-style Co-authored-by: laravel-ide-helper <[email protected]>
This commit is contained in:
co-authored by
laravel-ide-helper
parent
ca94ffd99a
commit
73b1012b92
+3
-2
@@ -2,9 +2,11 @@
|
|||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
[Next release](https://github.com/barryvdh/laravel-ide-helper/compare/v2.9.3...master)
|
[Next release](https://github.com/barryvdh/laravel-ide-helper/compare/v2.10.0...master)
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
|
2021-04-09, 2.10.0
|
||||||
|
------------------
|
||||||
### Added
|
### Added
|
||||||
- Allowing Methods to be set or unset in ModelHooks [\#1198 / jenga201](https://github.com/barryvdh/laravel-ide-helper/pull/1198)\
|
- Allowing Methods to be set or unset in ModelHooks [\#1198 / jenga201](https://github.com/barryvdh/laravel-ide-helper/pull/1198)\
|
||||||
Note: the visibility of `\Barryvdh\LaravelIdeHelper\Console\ModelsCommand::setMethod` has been changed to **public**!
|
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.
|
|||||||
|
|
||||||
2021-04-02, 2.9.3
|
2021-04-02, 2.9.3
|
||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- Support both customized namespace factories as well as default resolvable ones [\#1201 / wimski](https://github.com/barryvdh/laravel-ide-helper/pull/1201)
|
- Support both customized namespace factories as well as default resolvable ones [\#1201 / wimski](https://github.com/barryvdh/laravel-ide-helper/pull/1201)
|
||||||
|
|
||||||
|
|||||||
@@ -41,10 +41,10 @@ class MetaCommandTest extends TestCase
|
|||||||
public function testUnregisterAutoloader(): void
|
public function testUnregisterAutoloader(): void
|
||||||
{
|
{
|
||||||
$current = spl_autoload_functions();
|
$current = spl_autoload_functions();
|
||||||
$appended = function () { };
|
$appended = function () {
|
||||||
|
};
|
||||||
|
|
||||||
$this->app->bind('registers-autoloader', function () use ($appended)
|
$this->app->bind('registers-autoloader', function () use ($appended) {
|
||||||
{
|
|
||||||
spl_autoload_register($appended);
|
spl_autoload_register($appended);
|
||||||
return new stdClass();
|
return new stdClass();
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user