Skip to content

Commit 9e4aaf3

Browse files
authored
Merge pull request #21 from pimcore/AutomatedPR-from-7126031283
Automated PR
2 parents 6f8ae64 + 5a632fa commit 9e4aaf3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

bundles/CustomReportsBundle/src/DependencyInjection/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public function getConfigTreeBuilder(): TreeBuilder
7474
->end()
7575
->end();
7676

77-
ConfigurationHelper::addConfigLocationWithWriteTargetNodes($rootNode, ['custom_reports' => '/var/config/custom_reports']);
77+
ConfigurationHelper::addConfigLocationWithWriteTargetNodes($rootNode, ['custom_reports' => PIMCORE_CONFIGURATION_DIRECTORY . '/custom_reports']);
7878

7979
return $treeBuilder;
8080
}

bundles/StaticRoutesBundle/src/DependencyInjection/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function getConfigTreeBuilder(): TreeBuilder
5656
->end()
5757
->end();
5858

59-
ConfigurationHelper::addConfigLocationWithWriteTargetNodes($rootNode, ['staticroutes' => '/var/config/staticroutes']);
59+
ConfigurationHelper::addConfigLocationWithWriteTargetNodes($rootNode, ['staticroutes' => PIMCORE_CONFIGURATION_DIRECTORY . '/staticroutes']);
6060

6161
return $treeBuilder;
6262
}

lib/Tool/MaintenanceModeHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
class MaintenanceModeHelper implements MaintenanceModeHelperInterface
2626
{
27-
protected const ENTRY_ID = 'maintenace_mode';
27+
protected const ENTRY_ID = 'maintenance_mode';
2828

2929
public function __construct(protected RequestStack $requestStack, protected Connection $db)
3030
{

0 commit comments

Comments
 (0)