Skip to content

Commit

Permalink
Order yaml file loads by alphabet
Browse files Browse the repository at this point in the history
  • Loading branch information
mattamon committed Apr 25, 2024
1 parent 9d5e152 commit 854e12f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/DependencyInjection/PimcoreStudioBackendExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ public function load(array $configs, ContainerBuilder $container): void

$loader->load('assets.yaml');
$loader->load('authorization.yaml');
$loader->load('event_subscribers.yaml');
$loader->load('data_objects.yaml');
$loader->load('factories.yaml');
$loader->load('providers.yaml');
$loader->load('data_index.yaml');
$loader->load('data_index_filters.yaml');
$loader->load('data_objects.yaml');
$loader->load('event_subscribers.yaml');
$loader->load('factories.yaml');
$loader->load('open_api.yaml');
$loader->load('providers.yaml');
$loader->load('security.yaml');
$loader->load('services.yaml');
$loader->load('translation.yaml');
Expand Down

0 comments on commit 854e12f

Please sign in to comment.