1
0
mirror of https://github.com/php/pie.git synced 2026-03-23 23:12:17 +01:00

Apply latest CS fixes

This commit is contained in:
James Titcumb
2025-10-13 22:08:17 +01:00
parent ffe66a1c2e
commit 2ab49190bb

View File

@@ -6,10 +6,10 @@ declare(strict_types=1);
namespace Php\Pie;
use Php\Pie\Command\BuildCommand;
use Php\Pie\Command\InstallExtensionsForProjectCommand;
use Php\Pie\Command\DownloadCommand;
use Php\Pie\Command\InfoCommand;
use Php\Pie\Command\InstallCommand;
use Php\Pie\Command\InstallExtensionsForProjectCommand;
use Php\Pie\Command\RepositoryAddCommand;
use Php\Pie\Command\RepositoryListCommand;
use Php\Pie\Command\RepositoryRemoveCommand;
@@ -24,11 +24,16 @@ use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\EventDispatcher\EventDispatcher;
use function error_reporting;
use const E_DEPRECATED;
require_once __DIR__ . '/../src/Util/PieVersion.php';
if (PieVersion::isPharBuild()) {
error_reporting(error_reporting() & ~E_DEPRECATED);
}
// phpcs:ignore Squiz.NamingConventions.ValidVariableName.NotCamelCaps
include $_composer_autoload_path ?? __DIR__ . '/../vendor/autoload.php';
$container = Container::factory();
@@ -52,7 +57,7 @@ $application->setCommandLoader(new ContainerCommandLoader(
'self-update' => SelfUpdateCommand::class,
'self-verify' => SelfVerifyCommand::class,
'install-extensions-for-project' => InstallExtensionsForProjectCommand::class,
]
],
));
$application->run($container->get(InputInterface::class), $container->get(OutputInterface::class));