Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 55ff7b7

Browse files
Merge remote-tracking branch 'origin/1.4.x' into 2.0.x
2 parents 282a698 + 270c2ee commit 55ff7b7

File tree

3 files changed

+24
-0
lines changed

3 files changed

+24
-0
lines changed

‎extension.neon

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ parameters:
5151
- stubs/Symfony/Component/Messenger/Envelope.stub
5252
- stubs/Symfony/Component/OptionsResolver/Exception/InvalidOptionsException.stub
5353
- stubs/Symfony/Component/OptionsResolver/Options.stub
54+
- stubs/Symfony/Component/Process/Exception/LogicException.stub
5455
- stubs/Symfony/Component/Process/Process.stub
5556
- stubs/Symfony/Component/PropertyAccess/Exception/AccessException.stub
5657
- stubs/Symfony/Component/PropertyAccess/Exception/ExceptionInterface.stub
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php
2+
3+
namespace Symfony\Component\Process\Exception;
4+
5+
class LogicException extends \Exception
6+
{
7+
8+
}

‎stubs/Symfony/Component/Process/Process.stub

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,25 @@
22

33
namespace Symfony\Component\Process;
44

5+
use Symfony\Component\Process\Exception\LogicException;
6+
57
/**
68
* @implements \IteratorAggregate<string, string>
79
*/
810
class Process implements \IteratorAggregate
911
{
1012

13+
/**
14+
* @param int $flags
15+
*
16+
* @return \Generator<string, string, mixed, mixed>
17+
*
18+
* @throws LogicException in case the output has been disabled
19+
* @throws LogicException In case the process is not started
20+
*/
21+
public function getIterator(int $flags = 0): \Generator
22+
{
23+
24+
}
25+
1126
}

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /