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 17eeffb commit 808f752Copy full SHA for 808f752
Compiler/PassConfig.php
@@ -22,11 +22,12 @@
22
*/
23
class PassConfig
24
{
25
- public const TYPE_AFTER_REMOVING = 'afterRemoving';
+ // In the order of execution
26
public const TYPE_BEFORE_OPTIMIZATION = 'beforeOptimization';
27
- public const TYPE_BEFORE_REMOVING = 'beforeRemoving';
28
public const TYPE_OPTIMIZE = 'optimization';
+ public const TYPE_BEFORE_REMOVING = 'beforeRemoving';
29
public const TYPE_REMOVE = 'removing';
30
+ public const TYPE_AFTER_REMOVING = 'afterRemoving';
31
32
private MergeExtensionConfigurationPass $mergePass;
33
private array $afterRemovingPasses;
0 commit comments