Skip to content

Commit

Permalink
Apply php-cs-fixer changes
Browse files Browse the repository at this point in the history
  • Loading branch information
vin0401 authored and github-actions[bot] committed Jan 19, 2024
1 parent 46831c6 commit 45c7034
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 3 deletions.
10 changes: 10 additions & 0 deletions src/DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/**
* Pimcore
*
* This source file is available under following license:
* - Pimcore Commercial License (PCL)
*
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
* @license http://www.pimcore.org/license PCL
*/

namespace Pimcore\Bundle\WorkbenchUiBundle\DependencyInjection;

use Symfony\Component\Config\Definition\Builder\TreeBuilder;
Expand Down
16 changes: 13 additions & 3 deletions src/DependencyInjection/PimcoreWorkbenchUiExtension.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,22 @@
<?php

/**
* Pimcore
*
* This source file is available under following license:
* - Pimcore Commercial License (PCL)
*
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
* @license http://www.pimcore.org/license PCL
*/

namespace Pimcore\Bundle\WorkbenchUiBundle\DependencyInjection;

use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\Config\FileLocator;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Extension\PrependExtensionInterface;
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
use Symfony\Component\DependencyInjection\Loader;
use Symfony\Component\HttpKernel\DependencyInjection\Extension;

/**
* This is the class that loads and manages your bundle configuration.
Expand Down Expand Up @@ -36,7 +46,7 @@ public function prepend(ContainerBuilder $container)
$container->prependExtensionConfig('webpack_encore', [
// 'output_path' => realpath(__DIR__ . '/../Resources/public/build')
'output_path' => false,
'builds' => $builds
'builds' => $builds,
]);

}
Expand Down
10 changes: 10 additions & 0 deletions src/PimcoreWorkbenchUiBundle.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

declare(strict_types=1);

/**
* Pimcore
*
* This source file is available under following license:
* - Pimcore Commercial License (PCL)
*
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
* @license http://www.pimcore.org/license PCL
*/

namespace Pimcore\Bundle\WorkbenchUiBundle;

use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
Expand Down

0 comments on commit 45c7034

Please sign in to comment.