@@ -29,7 +29,7 @@ |
||
| 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(); |
@@ -15,7 +15,6 @@ |
||
| 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 { |
@@ -39,7 +39,6 @@ |
||
| 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; |
@@ -11,13 +11,11 @@ |
||
| 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. |