repo
stringlengths
7
63
file_url
stringlengths
81
284
file_path
stringlengths
5
200
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:02:33
2026-01-05 05:24:06
truncated
bool
2 classes
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/AbstractLoopCommand.php
src/Symfony/Component/Console/Tests/Fixtures/AbstractLoopCommand.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Fixtures; use Symfony\Component\Console...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/application_signalable.php
src/Symfony/Component/Console/Tests/Fixtures/application_signalable.php
<?php use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Question\ChoiceQuestion; use Symfony\Component\Console\SingleCommandApplication; $vendor = __DIR__; while (!file_exists($vendor.'/vendor')) { $vendor = \dirname($vendor); }...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/TestCommand.php
src/Symfony/Component/Console/Tests/Fixtures/TestCommand.php
<?php use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; class TestCommand extends Command { protected function configure(): void { $this ->setName('namespace:name') ->setAlias...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/FooSubnamespaced2Command.php
src/Symfony/Component/Console/Tests/Fixtures/FooSubnamespaced2Command.php
<?php use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; class FooSubnamespaced2Command extends Command { public InputInterface $input; public OutputInterface $output; protected function configure(): voi...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/DummyOutput.php
src/Symfony/Component/Console/Tests/Fixtures/DummyOutput.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Fixtures; use Symfony\Component\Console...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/DescriptorCommand2.php
src/Symfony/Component/Console/Tests/Fixtures/DescriptorCommand2.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Fixtures; use Symfony\Component\Console...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/BarHiddenCommand.php
src/Symfony/Component/Console/Tests/Fixtures/BarHiddenCommand.php
<?php use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; class BarHiddenCommand extends Command { protected function configure(): void { $this ->setName('bar:hidden') ->setAlia...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/InvokableWithInteractiveHiddenQuestionAttributeTestCommand.php
src/Symfony/Component/Console/Tests/Fixtures/InvokableWithInteractiveHiddenQuestionAttributeTestCommand.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Fixtures; use Symfony\Component\Console...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/DescriptorCommand4.php
src/Symfony/Component/Console/Tests/Fixtures/DescriptorCommand4.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Fixtures; use Symfony\Component\Console...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/FooCommand.php
src/Symfony/Component/Console/Tests/Fixtures/FooCommand.php
<?php use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; class FooCommand extends Command { public InputInterface $input; public OutputInterface $output; protected function configure(): void { ...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/FooWithoutAliasCommand.php
src/Symfony/Component/Console/Tests/Fixtures/FooWithoutAliasCommand.php
<?php use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; class FooWithoutAliasCommand extends Command { protected function configure(): void { $this ->setName('foo') ->setDescr...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/FoobarCommand.php
src/Symfony/Component/Console/Tests/Fixtures/FoobarCommand.php
<?php use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; class FoobarCommand extends Command { public $input; public $output; protected function configure(): void { $this ->setNam...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/FooLockCommand.php
src/Symfony/Component/Console/Tests/Fixtures/FooLockCommand.php
<?php use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Command\LockableTrait; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; class FooLockCommand extends Command { use LockableTrait; protected function configure(): void ...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/InvokableTestCommand.php
src/Symfony/Component/Console/Tests/Fixtures/InvokableTestCommand.php
<?php namespace Symfony\Component\Console\Tests\Fixtures; use Symfony\Component\Console\Attribute\AsCommand; use Symfony\Component\Console\Command\Command; #[AsCommand('invokable:test', aliases: ['inv-test'], usages: ['usage1', 'usage2'], description: 'desc', help: 'help me')] class InvokableTestCommand { public...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/Foo2Command.php
src/Symfony/Component/Console/Tests/Fixtures/Foo2Command.php
<?php use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; class Foo2Command extends Command { protected function configure(): void { $this ->setName('foo1:bar') ->setDescription...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/DescriptorCommandMbString.php
src/Symfony/Component/Console/Tests/Fixtures/DescriptorCommandMbString.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Fixtures; use Symfony\Component\Console...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/DescriptorApplication2.php
src/Symfony/Component/Console/Tests/Fixtures/DescriptorApplication2.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Fixtures; use Symfony\Component\Console...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/application_test_sigint.php
src/Symfony/Component/Console/Tests/Fixtures/application_test_sigint.php
<?php use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Helper\QuestionHelper; use Symfony\Component\Console\Input\ArgvInput; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\ConsoleOutput; use Symfony...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/Foo4Command.php
src/Symfony/Component/Console/Tests/Fixtures/Foo4Command.php
<?php use Symfony\Component\Console\Command\Command; class Foo4Command extends Command { protected function configure(): void { $this->setName('foo3:bar:toh'); } }
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/DescriptorApplicationMbString.php
src/Symfony/Component/Console/Tests/Fixtures/DescriptorApplicationMbString.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Fixtures; use Symfony\Component\Console...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/FooLock3Command.php
src/Symfony/Component/Console/Tests/Fixtures/FooLock3Command.php
<?php use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Command\LockableTrait; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Lock\LockFactory; class FooLock3Command extends Command { use LockableTrait; ...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/MethodBasedTestCommand.php
src/Symfony/Component/Console/Tests/Fixtures/MethodBasedTestCommand.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Fixtures; use Symfony\Component\Console...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/application_sttyhelper.php
src/Symfony/Component/Console/Tests/Fixtures/application_sttyhelper.php
<?php use Symfony\Component\Console\Input\InputDefinition; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Question\ChoiceQuestion; use Symfony\Component\Console\Question\Question; u...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/DescriptorCommand1.php
src/Symfony/Component/Console/Tests/Fixtures/DescriptorCommand1.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Fixtures; use Symfony\Component\Console...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/FooLock4InvokableCommand.php
src/Symfony/Component/Console/Tests/Fixtures/FooLock4InvokableCommand.php
<?php use Symfony\Component\Console\Attribute\AsCommand; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Command\LockableTrait; #[AsCommand(name: 'foo:lock4')] class FooLock4InvokableCommand { use LockableTrait; public function __invoke(): int { if (!$this->lock()) { ...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/DescriptorCommand3.php
src/Symfony/Component/Console/Tests/Fixtures/DescriptorCommand3.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Fixtures; use Symfony\Component\Console...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/Foo5Command.php
src/Symfony/Component/Console/Tests/Fixtures/Foo5Command.php
<?php use Symfony\Component\Console\Command\Command; class Foo5Command extends Command { public function __construct() { } }
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/FooLock2Command.php
src/Symfony/Component/Console/Tests/Fixtures/FooLock2Command.php
<?php use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Command\LockableTrait; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; class FooLock2Command extends Command { use LockableTrait; protected function configure(): void ...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/BarBucCommand.php
src/Symfony/Component/Console/Tests/Fixtures/BarBucCommand.php
<?php use Symfony\Component\Console\Command\Command; class BarBucCommand extends Command { protected function configure(): void { $this->setName('bar:buc'); } }
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/TestAmbiguousCommandRegistering.php
src/Symfony/Component/Console/Tests/Fixtures/TestAmbiguousCommandRegistering.php
<?php use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; class TestAmbiguousCommandRegistering extends Command { protected function configure(): void { $this ->setName('test-ambiguous') ...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/FooSameCaseUppercaseCommand.php
src/Symfony/Component/Console/Tests/Fixtures/FooSameCaseUppercaseCommand.php
<?php use Symfony\Component\Console\Command\Command; class FooSameCaseUppercaseCommand extends Command { protected function configure(): void { $this->setName('foo:BAR')->setDescription('foo:BAR command'); } }
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_0.php
src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_0.php
<?php use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; //Ensure has single blank line at start when using block element return function (InputInterface $input, OutputInterface $output): int { $output = new S...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_23.php
src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_23.php
<?php use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; return function (InputInterface $input, OutputInterface $output): int { $output = new SymfonyStyle($input, $output); $output->text('Hello'); re...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_13.php
src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_13.php
<?php use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; // ensure that nested tags have no effect on the color of the '//' prefix return function (InputInterface $input, OutputInterface $output): int { $outpu...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_16.php
src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_16.php
<?php use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; // ensure that block() output is properly formatted (even padding lines) return function (InputInterface $input, OutputInterface $output): int { $output...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_11.php
src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_11.php
<?php use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; // ensure long words are properly wrapped in blocks return function (InputInterface $input, OutputInterface $output): int { $word = 'Lopadotemachoselach...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_22.php
src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_22.php
<?php use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; // ensure that nested tags have no effect on the color of the '//' prefix return function (InputInterface $input, OutputInterface $output): int { $outpu...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_4.php
src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_4.php
<?php use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; //Ensure has single blank line after any text and a title return function (InputInterface $input, OutputInterface $output): int { $output = new SymfonyS...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_18.php
src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_18.php
<?php use Symfony\Component\Console\Helper\TableSeparator; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; return function (InputInterface $input, OutputInterface $output): int { $output = new SymfonyStyle(...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_1.php
src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_1.php
<?php use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; //Ensure has single blank line between titles and blocks return function (InputInterface $input, OutputInterface $output): int { $output = new SymfonySt...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_7.php
src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_7.php
<?php use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; //Ensure questions do not output anything when input is non-interactive return function (InputInterface $input, OutputInterface $output): int { $output ...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_2.php
src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_2.php
<?php use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; //Ensure has single blank line between blocks return function (InputInterface $input, OutputInterface $output): int { $output = new SymfonyStyle($input,...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_15.php
src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_15.php
<?php use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; // ensure that block() behaves properly with a type and without prefix return function (InputInterface $input, OutputInterface $output): int { $output =...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_17.php
src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_17.php
<?php use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; //Ensure symfony style helper methods handle trailing backslashes properly when decorating user texts return function (InputInterface $input, OutputInterfac...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_8.php
src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_8.php
<?php use Symfony\Component\Console\Helper\TableCell; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; //Ensure formatting tables when using multiple headers with TableCell return function (InputInterface $input...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_19.php
src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_19.php
<?php use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; //Ensure formatting tables when using multiple headers with TableCell return function (InputInterface $input, OutputInterface $output): int { $output = ...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_3.php
src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_3.php
<?php use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; //Ensure has single blank line between two titles return function (InputInterface $input, OutputInterface $output): int { $output = new SymfonyStyle($in...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_6.php
src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_6.php
<?php use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; //Ensure has proper blank line after text block when using a block like with SymfonyStyle::success return function (InputInterface $input, OutputInterface $...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_10.php
src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_10.php
<?php use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; //Ensure that all lines are aligned to the begin of the first line in a very long line block return function (InputInterface $input, OutputInterface $output...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_21.php
src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_21.php
<?php use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; //Ensure texts with emojis don't make longer lines than expected return function (InputInterface $input, OutputInterface $output): int { $output = new S...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_14.php
src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_14.php
<?php use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; // ensure that block() behaves properly with a prefix and without type return function (InputInterface $input, OutputInterface $output): int { $output =...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_9.php
src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_9.php
<?php use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; //Ensure that all lines are aligned to the begin of the first line in a multi-line block return function (InputInterface $input, OutputInterface $output): i...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/interactive_command_1.php
src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/interactive_command_1.php
<?php use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; //Ensure that questions have the expected outputs return function (InputInterface $input, OutputInterface $output): int { $output = new SymfonyStyle($in...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_5.php
src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_5.php
<?php use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; //Ensure has proper line ending before outputting a text block like with SymfonyStyle::listing() or SymfonyStyle::text() return function (InputInterface $in...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_20.php
src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_20.php
<?php use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; // Ensure that closing tag is applied once return function (InputInterface $input, OutputInterface $output): int { $output->setDecorated(true); $out...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_4_with_iterators.php
src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_4_with_iterators.php
<?php use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; //Ensure has single blank line after any text and a title return function (InputInterface $input, OutputInterface $output): int { $output = new SymfonyS...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_12.php
src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_12.php
<?php use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; // ensure that all lines are aligned to the begin of the first one and start with '//' in a very long line comment return function (InputInterface $input, O...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/progress/command_progress_iterate.php
src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/progress/command_progress_iterate.php
<?php use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; // progressIterate return function (InputInterface $input, OutputInterface $output): int { $style = new SymfonyStyle($input, $output); foreach ($st...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Question/ChoiceQuestionTest.php
src/Symfony/Component/Console/Tests/Question/ChoiceQuestionTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Question; use PHPUnit\Framework\Attribu...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Question/ConfirmationQuestionTest.php
src/Symfony/Component/Console/Tests/Question/ConfirmationQuestionTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Question; use PHPUnit\Framework\Attribu...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Question/QuestionTest.php
src/Symfony/Component/Console/Tests/Question/QuestionTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Question; use PHPUnit\Framework\Attribu...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Logger/ConsoleLoggerTest.php
src/Symfony/Component/Console/Tests/Logger/ConsoleLoggerTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Logger; use PHPUnit\Framework\Attribute...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/CI/GithubActionReporterTest.php
src/Symfony/Component/Console/Tests/CI/GithubActionReporterTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\CI; use PHPUnit\Framework\Attributes\Da...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/DependencyInjection/AddConsoleCommandPassTest.php
src/Symfony/Component/Console/Tests/DependencyInjection/AddConsoleCommandPassTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\DependencyInjection; use PHPUnit\Framew...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/CommandLoader/FactoryCommandLoaderTest.php
src/Symfony/Component/Console/Tests/CommandLoader/FactoryCommandLoaderTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\CommandLoader; use PHPUnit\Framework\Te...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/CommandLoader/ContainerCommandLoaderTest.php
src/Symfony/Component/Console/Tests/CommandLoader/ContainerCommandLoaderTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\CommandLoader; use PHPUnit\Framework\Te...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Descriptor/XmlDescriptorTest.php
src/Symfony/Component/Console/Tests/Descriptor/XmlDescriptorTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Descriptor; use Symfony\Component\Conso...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Descriptor/ObjectsProvider.php
src/Symfony/Component/Console/Tests/Descriptor/ObjectsProvider.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Descriptor; use Symfony\Component\Conso...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Descriptor/AbstractDescriptorTestCase.php
src/Symfony/Component/Console/Tests/Descriptor/AbstractDescriptorTestCase.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Descriptor; use PHPUnit\Framework\Attri...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Descriptor/JsonDescriptorTest.php
src/Symfony/Component/Console/Tests/Descriptor/JsonDescriptorTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Descriptor; use Symfony\Component\Conso...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Descriptor/ReStructuredTextDescriptorTest.php
src/Symfony/Component/Console/Tests/Descriptor/ReStructuredTextDescriptorTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Descriptor; use Symfony\Component\Conso...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Descriptor/TextDescriptorTest.php
src/Symfony/Component/Console/Tests/Descriptor/TextDescriptorTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Descriptor; use Symfony\Component\Conso...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Descriptor/MarkdownDescriptorTest.php
src/Symfony/Component/Console/Tests/Descriptor/MarkdownDescriptorTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Descriptor; use Symfony\Component\Conso...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Descriptor/ApplicationDescriptionTest.php
src/Symfony/Component/Console/Tests/Descriptor/ApplicationDescriptionTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Descriptor; use PHPUnit\Framework\Attri...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Helper/HelperSetTest.php
src/Symfony/Component/Console/Tests/Helper/HelperSetTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Helper; use PHPUnit\Framework\TestCase;...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Helper/AbstractQuestionHelperTestCase.php
src/Symfony/Component/Console/Tests/Helper/AbstractQuestionHelperTestCase.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Helper; use PHPUnit\Framework\TestCase;...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Helper/DumperNativeFallbackTest.php
src/Symfony/Component/Console/Tests/Helper/DumperNativeFallbackTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Helper; use PHPUnit\Framework\Attribute...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Helper/TableTest.php
src/Symfony/Component/Console/Tests/Helper/TableTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Helper; use PHPUnit\Framework\Attribute...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
true
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Helper/TreeStyleTest.php
src/Symfony/Component/Console/Tests/Helper/TreeStyleTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Helper; use PHPUnit\Framework\TestCase;...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Helper/ProcessHelperTest.php
src/Symfony/Component/Console/Tests/Helper/ProcessHelperTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Helper; use PHPUnit\Framework\Attribute...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Helper/DescriptorHelperTest.php
src/Symfony/Component/Console/Tests/Helper/DescriptorHelperTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Helper; use PHPUnit\Framework\TestCase;...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Helper/DumperTest.php
src/Symfony/Component/Console/Tests/Helper/DumperTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Helper; use PHPUnit\Framework\Attribute...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Helper/ProgressIndicatorTest.php
src/Symfony/Component/Console/Tests/Helper/ProgressIndicatorTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Helper; use PHPUnit\Framework\Attribute...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Helper/TableStyleTest.php
src/Symfony/Component/Console/Tests/Helper/TableStyleTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Helper; use PHPUnit\Framework\TestCase;...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Helper/QuestionHelperTest.php
src/Symfony/Component/Console/Tests/Helper/QuestionHelperTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Helper; use PHPUnit\Framework\Attribute...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
true
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Helper/ProgressBarTest.php
src/Symfony/Component/Console/Tests/Helper/ProgressBarTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Helper; use PHPUnit\Framework\Attribute...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
true
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Helper/FormatterHelperTest.php
src/Symfony/Component/Console/Tests/Helper/FormatterHelperTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Helper; use PHPUnit\Framework\TestCase;...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Helper/HelperTest.php
src/Symfony/Component/Console/Tests/Helper/HelperTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Helper; use PHPUnit\Framework\Attribute...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Helper/TreeHelperTest.php
src/Symfony/Component/Console/Tests/Helper/TreeHelperTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Helper; use PHPUnit\Framework\TestCase;...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Helper/TreeNodeTest.php
src/Symfony/Component/Console/Tests/Helper/TreeNodeTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Helper; use PHPUnit\Framework\TestCase;...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Helper/TableCellStyleTest.php
src/Symfony/Component/Console/Tests/Helper/TableCellStyleTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Helper; use PHPUnit\Framework\TestCase;...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Helper/OutputWrapperTest.php
src/Symfony/Component/Console/Tests/Helper/OutputWrapperTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Helper; use PHPUnit\Framework\Attribute...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Helper/SymfonyQuestionHelperTest.php
src/Symfony/Component/Console/Tests/Helper/SymfonyQuestionHelperTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Helper; use PHPUnit\Framework\Attribute...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Input/ArrayInputTest.php
src/Symfony/Component/Console/Tests/Input/ArrayInputTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Input; use PHPUnit\Framework\Attributes...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Input/InputOptionTest.php
src/Symfony/Component/Console/Tests/Input/InputOptionTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Input; use PHPUnit\Framework\TestCase; ...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Input/InputTest.php
src/Symfony/Component/Console/Tests/Input/InputTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Input; use PHPUnit\Framework\TestCase; ...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Input/StringInputTest.php
src/Symfony/Component/Console/Tests/Input/StringInputTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Input; use PHPUnit\Framework\Attributes...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Input/InputArgumentTest.php
src/Symfony/Component/Console/Tests/Input/InputArgumentTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Input; use PHPUnit\Framework\TestCase; ...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Input/InputDefinitionTest.php
src/Symfony/Component/Console/Tests/Input/InputDefinitionTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Input; use PHPUnit\Framework\Attributes...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Console/Tests/Input/ArgvInputTest.php
src/Symfony/Component/Console/Tests/Input/ArgvInputTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Input; use PHPUnit\Framework\Attributes...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false