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:
Markus Podar
2021-04-09 08:17:55 +02:00
committed by GitHub
co-authored by laravel-ide-helper
parent ca94ffd99a
commit 73b1012b92
2 changed files with 6 additions and 5 deletions
@@ -41,10 +41,10 @@ class MetaCommandTest extends TestCase
public function testUnregisterAutoloader(): void
{
$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);
return new stdClass();
});