Skip to content

Commit

Permalink
Apply php-cs-fixer changes
Browse files Browse the repository at this point in the history
  • Loading branch information
brusch authored and github-actions[bot] committed Feb 28, 2024
1 parent 5050b69 commit 9c3ef3b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
4 changes: 2 additions & 2 deletions bundles/InstallBundle/src/Command/InstallCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@

namespace Pimcore\Bundle\InstallBundle\Command;

use function explode;
use function implode;
use Pimcore\Bundle\InstallBundle\Event\BundleSetupEvent;
use Pimcore\Bundle\InstallBundle\Event\InstallerStepEvent;
use Pimcore\Bundle\InstallBundle\Event\InstallEvents;
Expand All @@ -32,8 +34,6 @@
use Symfony\Component\Console\Output\BufferedOutput;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
use function explode;
use function implode;

/**
* @method Application getApplication()
Expand Down
8 changes: 1 addition & 7 deletions bundles/InstallBundle/src/Installer.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
use Doctrine\DBAL\Connection;
use Doctrine\DBAL\Driver\ServerInfoAwareConnection;
use Doctrine\DBAL\DriverManager;
use function in_array;
use PDO;
use Pimcore\Bundle\ApplicationLoggerBundle\PimcoreApplicationLoggerBundle;
use Pimcore\Bundle\CustomReportsBundle\PimcoreCustomReportsBundle;
Expand Down Expand Up @@ -54,7 +55,6 @@
use Symfony\Component\HttpKernel\KernelInterface;
use Symfony\Component\Process\Exception\ProcessFailedException;
use Symfony\Component\Process\Process;
use function in_array;

/**
* @internal
Expand Down Expand Up @@ -895,17 +895,11 @@ private function isBundleInstalled(string $bundle): bool
return null !== SettingsStore::get('BUNDLE_INSTALLED__' . $bundle, 'pimcore');
}

/**
* @return array
*/
public function getRunInstallSteps(): array
{
return $this->runInstallSteps;
}

/**
* @param array $runInstallSteps
*/
public function setRunInstallSteps(array $runInstallSteps): void
{
$this->runInstallSteps = $runInstallSteps;
Expand Down

0 comments on commit 9c3ef3b

Please sign in to comment.