Replace the log writer class with the new one

This commit is contained in:
Lance Pioch 2018-05-13 16:40:31 -04:00
parent 8bf030793f
commit 02379b657d
6 changed files with 15 additions and 15 deletions

View file

@ -12,7 +12,7 @@ namespace Tests\Unit\Services\Servers;
use Exception;
use Mockery as m;
use Tests\TestCase;
use Illuminate\Log\Writer;
use Psr\Log\LoggerInterface as Writer;
use GuzzleHttp\Psr7\Response;
use Pterodactyl\Models\Server;
use GuzzleHttp\Exception\RequestException;
@ -55,7 +55,7 @@ class SuspensionServiceTest extends TestCase
protected $service;
/**
* @var \Illuminate\Log\Writer
* @var \Psr\Log\LoggerInterface
*/
protected $writer;