Completed
Push — master ( e2dc10...6f7e0c )
by Richard
06:21
created
src/App/DB.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
     }
30 30
 
31 31
     /**
32
-     * @return \Doctrine\DBAL\Query\Builder
32
+     * @return \Doctrine\DBAL\Query\QueryBuilder
33 33
      */
34 34
     public function builder() {
35 35
         return $this->connection->createQueryBuilder();
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
15 15
 use Lechimp\Dicto\Indexer\Insert;
16 16
 use Doctrine\DBAL\Connection;
17 17
 use Doctrine\DBAL\Schema;
18
-use Doctrine\DBAL\Types\Type;
19 18
 use Doctrine\DBAL\Schema\Synchronizer\SingleDatabaseSynchronizer;
20 19
 
21 20
 class DB implements Insert, Query {
Please login to merge, or discard this patch.
src/App/Engine.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,6 @@
 block discarded – undo
39 39
     protected $db;
40 40
 
41 41
     /**
42
-     * @param   string  $project_root
43 42
      */
44 43
     public function __construct(Config $config, I\Indexer $indexer, DB $db) {
45 44
         $this->config = $config;
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -11,13 +11,11 @@
 block discarded – undo
11 11
 namespace Lechimp\Dicto\App;
12 12
 
13 13
 use Lechimp\Dicto\Indexer as I;
14
-
15 14
 use League\Flysystem\Adapter\Local;
16 15
 use League\Flysystem\Filesystem;
17 16
 use Lechimp\Flightcontrol\Flightcontrol;
18 17
 use Lechimp\Flightcontrol\File;
19 18
 use Lechimp\Flightcontrol\FSObject;
20
-use Doctrine\DBAL\DriverManager;
21 19
 
22 20
 /**
23 21
  * The Engine of the App drives the analysis process.
Please login to merge, or discard this patch.