Completed
Push — master ( 6a5fc3...8a64d2 )
by Dmitry
10:41
created
tests/ApplicationTest.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use Basis\Application;
4
-use Basis\Converter;
3
+use Basis\Application;
4
+use Basis\Converter;
5 5
 use League\Container\Container;
6 6
 
7 7
 class ApplicationTest extends TestSuite
Please login to merge, or discard this patch.
tests/HttpTest.php 1 patch
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use Basis\Http;
4
-
3
+use Basis\Http;
5 4
 use Example\Controllers\Index;
6 5
 
7 6
 class HttpTest extends TestSuite
Please login to merge, or discard this patch.
tests/LoggerTest.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use Basis\Logger;
4
-use Fluent\Logger\FluentLogger;
3
+use Basis\Logger;
4
+use Fluent\Logger\FluentLogger;
5 5
 use League\Container\Container;
6 6
 
7 7
 class LoggerTest extends TestSuite
Please login to merge, or discard this patch.
tests/MapperTest.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use Basis\Filesystem;
4
-use League\Container\Container;
3
+use Basis\Filesystem;
4
+use League\Container\Container;
5 5
 use Tarantool\Mapper\Migrations\Migrator;
6 6
 
7 7
 class MapperTest extends TestSuite
Please login to merge, or discard this patch.
tests/RunnerTest.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use Basis\Jobs\Job\Info;
4
-use Basis\Runner;
3
+use Basis\Jobs\Job\Info;
4
+use Basis\Runner;
5 5
 use Example\Jobs\Hello\World;
6 6
 
7 7
 class RunnerTest extends TestSuite
Please login to merge, or discard this patch.
tests/ProviderTest.php 1 patch
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use Basis\Config;
4
-use Example\BusinessLogic;
3
+use Example\BusinessLogic;
5 4
 use League\Container\Container;
6 5
 
7 6
 class ProviderTest extends TestSuite
Please login to merge, or discard this patch.
src/Http.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Basis;
4 4
 
5
-use League\Container\Container;
5
+use League\Container\Container;
6 6
 use LogicException;
7 7
 
8 8
 class Http
Please login to merge, or discard this patch.
src/Jobs/Module/Meta.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Basis\Jobs\Module;
4 4
 
5
-use Basis\Filesystem;
6
-use ReflectionClass;
5
+use Basis\Filesystem;
6
+use ReflectionClass;
7 7
 use ReflectionMethod;
8 8
 
9 9
 class Meta
Please login to merge, or discard this patch.
src/Application.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -9,6 +9,9 @@
 block discarded – undo
9 9
 {
10 10
     private $startTime;
11 11
 
12
+    /**
13
+     * @param string $root
14
+     */
12 15
     public function __construct($root)
13 16
     {
14 17
         $this->startTime = microtime(1);
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Basis;
4 4
 
5
-use League\Container\Container;
5
+use League\Container\Container;
6 6
 use League\Container\ReflectionContainer;
7 7
 
8 8
 class Application
Please login to merge, or discard this patch.