Skip to content

Commit

Permalink
Reordering DotenvBootloader and TokenizerListenerBootloader (#134)
Browse files Browse the repository at this point in the history
* TokenizerListenerBootloader after DotenvBootloader

* Fix test
  • Loading branch information
msmakouz committed Sep 4, 2023
1 parent 1edf87b commit 55ba0b4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ public function defineSystemBootloaders(): array
{
return [
CoreBootloader::class,
TokenizerListenerBootloader::class,
DotenvBootloader::class,
TokenizerListenerBootloader::class,
];
}

Expand Down
2 changes: 1 addition & 1 deletion installer/Internal/Generator/Kernel/Configurator.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ private function addRequiredSystemBootloaders(): void
$this->system->addGroup(
bootloaders: [
CoreBootloader::class,
TokenizerListenerBootloader::class,
DotenvBootloader::class,
TokenizerListenerBootloader::class,
],
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ public function defineSystemBootloaders(): array
{
return [
CoreBootloader::class,
TokenizerListenerBootloader::class,
DotenvBootloader::class,
TokenizerListenerBootloader::class,
Framework\CommandBootloader::class,
];
Expand Down Expand Up @@ -137,8 +137,8 @@ public function defineSystemBootloaders(): array
{
return [
CoreBootloader::class,
TokenizerListenerBootloader::class,
DotenvBootloader::class,
TokenizerListenerBootloader::class,
];
}
Expand Down

0 comments on commit 55ba0b4

Please sign in to comment.