Test Failed
Push — master ( d813a9...07e59f )
by Valentin
02:59
created
source/LogViewer/Services/LogService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
      */
55 55
     public function lastLog()
56 56
     {
57
-        $files = $this->finder->files()->in($this->config->directories())->sort(function ($a, $b) {
57
+        $files = $this->finder->files()->in($this->config->directories())->sort(function($a, $b) {
58 58
             /**
59 59
              * @var SplFileInfo $a
60 60
              * @var SplFileInfo $b
Please login to merge, or discard this patch.
tests/BaseTest.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -4,14 +4,11 @@
 block discarded – undo
4 4
 
5 5
 use Monolog\Handler\NullHandler;
6 6
 use PHPUnit\Framework\TestCase;
7
-use Psr\Http\Message\ResponseInterface;
8
-use Psr\Http\Message\UriInterface;
9 7
 use Psr\Log\LoggerInterface;
10 8
 use Psr\Log\LoggerTrait;
11 9
 use Psr\Log\LogLevel;
12 10
 use Spiral\Core\Traits\SharedTrait;
13 11
 use Spiral\Debug\Snapshot;
14
-use Zend\Diactoros\ServerRequest;
15 12
 
16 13
 /**
17 14
  * @property \Spiral\Core\MemoryInterface             $memory
Please login to merge, or discard this patch.