We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97ccbe9 commit 7b006d1Copy full SHA for 7b006d1
src/CodeTransformerKernel.php
@@ -152,6 +152,7 @@ public static function init(): void
152
153
// Initialize the services
154
$instance->preInit();
155
+ $instance->configureOptions();
156
$instance->registerServices();
157
$instance->registerAutoloadInterceptor();
158
@@ -187,6 +188,16 @@ protected function preInit(): void
187
188
$this->transformerManager->addTransformers($this->transformers);
189
}
190
191
+ /**
192
+ * Configure or modify kernel options.
193
+ *
194
+ * @return void
195
+ */
196
+ protected function configureOptions(): void
197
+ {
198
+ // Override this method to configure the options dynamically
199
+ }
200
+
201
/**
202
* Register the services.
203
*
0 commit comments