Explorer
home
/
zoteqbgb
/
public_html
/
vendor
/
doctrine
/
dbal
/
src
/
Tools
/
Console
/
Command
Location:
/home/zoteqbgb/public_html/vendor/doctrine/dbal/src/Tools/Console/Command
Root path:
/home/zoteqbgb/public_html/config/676626
Editing: CommandCompatibility.php
<?php declare(strict_types=1); namespace Doctrine\DBAL\Tools\Console\Command; use ReflectionMethod; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; if ((new ReflectionMethod(Command::class, 'execute'))->hasReturnType()) { /** @internal */ trait CommandCompatibility { protected function execute(InputInterface $input, OutputInterface $output): int { return $this->doExecute($input, $output); } } } else { /** @internal */ trait CommandCompatibility { /** * {@inheritDoc} * * @return int */ protected function execute(InputInterface $input, OutputInterface $output) { return $this->doExecute($input, $output); } } }
Save maftirs
Upload
Start Upload
New File
Create File
New Folder
Create Folder
Directory Contents
Name
Size
Perms
Modified
Actions
CommandCompatibility.php
872 bytes
0644
2025-01-16 13:28
âï¸
ðï¸
Rename
ReservedWordsCommand.php
7,102 bytes
0644
2025-01-16 13:28
âï¸
ðï¸
Rename
RunSqlCommand.php
3,795 bytes
0644
2025-01-16 13:28
âï¸
ðï¸
Rename
Chang
Apply