@@ -39,47 +39,47 @@ |
||
39 | 39 | { |
40 | 40 | $this->app->singleton( |
41 | 41 | 'artomator.graphql', |
42 | - function ($app) { |
|
42 | + function($app) { |
|
43 | 43 | return new GraphQLGeneratorCommand(); |
44 | 44 | } |
45 | 45 | ); |
46 | 46 | |
47 | 47 | $this->app->singleton( |
48 | 48 | 'artomator.graphql_scaffold', |
49 | - function ($app) { |
|
49 | + function($app) { |
|
50 | 50 | return new GraphQLScaffoldGeneratorCommand(); |
51 | 51 | } |
52 | 52 | ); |
53 | 53 | |
54 | 54 | $this->app->singleton( |
55 | 55 | 'artomator.graphql.query', |
56 | - function ($app) { |
|
56 | + function($app) { |
|
57 | 57 | return new GraphQLQueryGeneratorCommand(); |
58 | 58 | } |
59 | 59 | ); |
60 | 60 | |
61 | 61 | $this->app->singleton( |
62 | 62 | 'artomator.graphql.mutations', |
63 | - function ($app) { |
|
63 | + function($app) { |
|
64 | 64 | return new GraphQLMutationsGeneratorCommand(); |
65 | 65 | } |
66 | 66 | ); |
67 | 67 | |
68 | 68 | $this->app->singleton( |
69 | 69 | 'artomator.graphql.type', |
70 | - function ($app) { |
|
70 | + function($app) { |
|
71 | 71 | return new GraphQLTypeGeneratorCommand(); |
72 | 72 | } |
73 | 73 | ); |
74 | 74 | |
75 | 75 | $this->app->singleton( |
76 | 76 | 'artomator.graphql.subscription', |
77 | - function ($app) { |
|
77 | + function($app) { |
|
78 | 78 | return new GraphQLSubscriptionGeneratorCommand(); |
79 | 79 | } |
80 | 80 | ); |
81 | 81 | |
82 | - $this->app->singleton('artomator.publish.templates', function ($app) { |
|
82 | + $this->app->singleton('artomator.publish.templates', function($app) { |
|
83 | 83 | return new PublishTemplateCommand(); |
84 | 84 | }); |
85 | 85 |