Completed
Push — master ( 7623c5...923419 )
by Beniamin
04:53
created
src/Phuria/SQLBuilder/DependencyInjection/ContainerFactory.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -35,15 +35,15 @@
 block discarded – undo
35 35
 
36 36
         $container['phuria.sql_builder.parameter_manager.class'] = ParameterManager::class;
37 37
 
38
-        $container['phuria.sql_builder.table_registry'] = function () {
38
+        $container['phuria.sql_builder.table_registry'] = function() {
39 39
             return new TableRegistry();
40 40
         };
41 41
 
42
-        $container['phuria.sql_builder.table_factory'] = function (Container $c) {
42
+        $container['phuria.sql_builder.table_factory'] = function(Container $c) {
43 43
             return new TableFactory($c['phuria.sql_builder.table_registry']);
44 44
         };
45 45
 
46
-        $container['phuria.sql_builder.query_compiler'] = function () {
46
+        $container['phuria.sql_builder.query_compiler'] = function() {
47 47
             $queryCompiler = new QueryCompiler();
48 48
             $queryCompiler->addConcreteCompiler(new SelectCompiler());
49 49
             $queryCompiler->addConcreteCompiler(new InsertCompiler());
Please login to merge, or discard this patch.