@@ -25,6 +25,7 @@ |
||
| 25 | 25 | * @param \chillerlan\Traits\ImmutableSettingsInterface $options |
| 26 | 26 | * @param \Psr\SimpleCache\CacheInterface|null $cache |
| 27 | 27 | * @param \Psr\Log\LoggerInterface|null $logger |
| 28 | + * @return void |
|
| 28 | 29 | */ |
| 29 | 30 | public function __construct(ImmutableSettingsInterface $options, CacheInterface $cache = null, LoggerInterface $logger = null); |
| 30 | 31 | |
@@ -12,10 +12,10 @@ |
||
| 12 | 12 | |
| 13 | 13 | namespace chillerlan\Database\Drivers; |
| 14 | 14 | |
| 15 | -use chillerlan\Database\Dialects\Dialect; |
|
| 16 | -use chillerlan\Traits\ImmutableSettingsInterface; |
|
| 17 | 15 | use Psr\Log\LoggerInterface; |
| 18 | 16 | use Psr\SimpleCache\CacheInterface; |
| 17 | +use chillerlan\Database\Dialects\Dialect; |
|
| 18 | +use chillerlan\Traits\ImmutableSettingsInterface; |
|
| 19 | 19 | |
| 20 | 20 | interface DriverInterface{ |
| 21 | 21 | |
@@ -12,9 +12,9 @@ |
||
| 12 | 12 | |
| 13 | 13 | namespace chillerlan\Database\Drivers; |
| 14 | 14 | |
| 15 | +use PDO; |
|
| 15 | 16 | use chillerlan\Database\Dialects\MSSQL; |
| 16 | 17 | use chillerlan\Traits\ImmutableSettingsInterface; |
| 17 | -use PDO; |
|
| 18 | 18 | use Psr\{ |
| 19 | 19 | Log\LoggerInterface, SimpleCache\CacheInterface |
| 20 | 20 | }; |
@@ -12,9 +12,9 @@ |
||
| 12 | 12 | |
| 13 | 13 | namespace chillerlan\Database; |
| 14 | 14 | |
| 15 | -use chillerlan\Traits\ImmutableSettingsInterface; |
|
| 16 | 15 | use Psr\Log\LoggerInterface; |
| 17 | 16 | use Psr\SimpleCache\CacheInterface; |
| 17 | +use chillerlan\Traits\ImmutableSettingsInterface; |
|
| 18 | 18 | |
| 19 | 19 | /** |
| 20 | 20 | * @todo WIP |