Replace loggin contract
This commit is contained in:
parent
9cbada17b2
commit
8bf030793f
1 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
namespace Pterodactyl\Providers;
|
namespace Pterodactyl\Providers;
|
||||||
|
|
||||||
use Illuminate\Contracts\Logging\Log;
|
use Psr\Log\LoggerInterface as Log;
|
||||||
use Illuminate\Database\QueryException;
|
use Illuminate\Database\QueryException;
|
||||||
use Illuminate\Support\ServiceProvider;
|
use Illuminate\Support\ServiceProvider;
|
||||||
use Illuminate\Contracts\Encryption\Encrypter;
|
use Illuminate\Contracts\Encryption\Encrypter;
|
||||||
|
@ -62,7 +62,7 @@ class SettingsServiceProvider extends ServiceProvider
|
||||||
*
|
*
|
||||||
* @param \Illuminate\Contracts\Config\Repository $config
|
* @param \Illuminate\Contracts\Config\Repository $config
|
||||||
* @param \Illuminate\Contracts\Encryption\Encrypter $encrypter
|
* @param \Illuminate\Contracts\Encryption\Encrypter $encrypter
|
||||||
* @param \Illuminate\Contracts\Logging\Log $log
|
* @param \Psr\Log\LoggerInterface $log
|
||||||
* @param \Pterodactyl\Contracts\Repository\SettingsRepositoryInterface $settings
|
* @param \Pterodactyl\Contracts\Repository\SettingsRepositoryInterface $settings
|
||||||
*/
|
*/
|
||||||
public function boot(ConfigRepository $config, Encrypter $encrypter, Log $log, SettingsRepositoryInterface $settings)
|
public function boot(ConfigRepository $config, Encrypter $encrypter, Log $log, SettingsRepositoryInterface $settings)
|
||||||
|
|
Loading…
Reference in a new issue