Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
"illuminate/encryption": "^13",
"illuminate/events": "^13",
"illuminate/filesystem": "^13",
"illuminate/http": "^13",
"illuminate/http": "^13",
"illuminate/log": "^13",
"illuminate/macroable": "^13",
"illuminate/pagination": "^13",
"illuminate/pipeline": "^13",
Expand Down Expand Up @@ -64,7 +65,6 @@
"illuminate/foundation": "self.version",
"illuminate/hashing": "self.version",
"illuminate/html": "self.version",
"illuminate/log": "self.version",
"illuminate/mail": "self.version",
"illuminate/queue": "self.version",
"illuminate/routing": "self.version",
Expand Down
5 changes: 1 addition & 4 deletions src/Illuminate/Foundation/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -1258,7 +1258,7 @@ public function registerCoreContainerAliases()
'hash' => 'Illuminate\Contracts\Hashing\Hasher',
'html' => 'Illuminate\Html\HtmlBuilder',
'translator' => 'Illuminate\Translation\Translator',
'log' => 'Illuminate\Log\Logger',
'log' => 'Illuminate\Log\LogManager',
'mailer' => 'Illuminate\Mail\Mailer',
'auth.reminder' => 'Illuminate\Auth\Reminders\PasswordBroker',
'queue' => 'Illuminate\Queue\QueueManager',
Expand All @@ -1278,9 +1278,6 @@ public function registerCoreContainerAliases()
$this->alias($key, $alias);
}

// BC: Log\Writer renamed to Log\Logger (task 3.5); keep old name resolvable.
$this->alias('log', 'Illuminate\Log\Writer');

// Encrypter now implements the L13 contracts (task 2.9); resolve them to 'encrypter'.
$this->alias('encrypter', 'Illuminate\Contracts\Encryption\Encrypter');
$this->alias('encrypter', 'Illuminate\Contracts\Encryption\StringEncrypter');
Expand Down
102 changes: 0 additions & 102 deletions tests/Log/LogWriterTest.php

This file was deleted.

Loading