Skip to content

Commit 00db88f

Browse files
committed
[CS] Remove @inheritdoc PHPDoc
1 parent 18036fe commit 00db88f

File tree

4 files changed

+0
-42
lines changed

4 files changed

+0
-42
lines changed

PhpProcess.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,17 +50,11 @@ public function __construct(string $script, string $cwd = null, array $env = nul
5050
parent::__construct($php, $cwd, $env, $script, $timeout);
5151
}
5252

53-
/**
54-
* {@inheritdoc}
55-
*/
5653
public static function fromShellCommandline(string $command, string $cwd = null, array $env = null, mixed $input = null, ?float $timeout = 60): static
5754
{
5855
throw new LogicException(sprintf('The "%s()" method cannot be called when using "%s".', __METHOD__, self::class));
5956
}
6057

61-
/**
62-
* {@inheritdoc}
63-
*/
6458
public function start(callable $callback = null, array $env = [])
6559
{
6660
if (null === $this->getCommandLine()) {

Pipes/AbstractPipes.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,6 @@ public function __construct(mixed $input)
4141
}
4242
}
4343

44-
/**
45-
* {@inheritdoc}
46-
*/
4744
public function close()
4845
{
4946
foreach ($this->pipes as $pipe) {

Pipes/UnixPipes.php

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,6 @@ public function __destruct()
5050
$this->close();
5151
}
5252

53-
/**
54-
* {@inheritdoc}
55-
*/
5653
public function getDescriptors(): array
5754
{
5855
if (!$this->haveReadSupport) {
@@ -88,17 +85,11 @@ public function getDescriptors(): array
8885
];
8986
}
9087

91-
/**
92-
* {@inheritdoc}
93-
*/
9488
public function getFiles(): array
9589
{
9690
return [];
9791
}
9892

99-
/**
100-
* {@inheritdoc}
101-
*/
10293
public function readAndWrite(bool $blocking, bool $close = false): array
10394
{
10495
$this->unblock();
@@ -145,17 +136,11 @@ public function readAndWrite(bool $blocking, bool $close = false): array
145136
return $read;
146137
}
147138

148-
/**
149-
* {@inheritdoc}
150-
*/
151139
public function haveReadSupport(): bool
152140
{
153141
return $this->haveReadSupport;
154142
}
155143

156-
/**
157-
* {@inheritdoc}
158-
*/
159144
public function areOpen(): bool
160145
{
161146
return (bool) $this->pipes;

Pipes/WindowsPipes.php

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,6 @@ public function __destruct()
103103
$this->close();
104104
}
105105

106-
/**
107-
* {@inheritdoc}
108-
*/
109106
public function getDescriptors(): array
110107
{
111108
if (!$this->haveReadSupport) {
@@ -128,17 +125,11 @@ public function getDescriptors(): array
128125
];
129126
}
130127

131-
/**
132-
* {@inheritdoc}
133-
*/
134128
public function getFiles(): array
135129
{
136130
return $this->files;
137131
}
138132

139-
/**
140-
* {@inheritdoc}
141-
*/
142133
public function readAndWrite(bool $blocking, bool $close = false): array
143134
{
144135
$this->unblock();
@@ -171,25 +162,16 @@ public function readAndWrite(bool $blocking, bool $close = false): array
171162
return $read;
172163
}
173164

174-
/**
175-
* {@inheritdoc}
176-
*/
177165
public function haveReadSupport(): bool
178166
{
179167
return $this->haveReadSupport;
180168
}
181169

182-
/**
183-
* {@inheritdoc}
184-
*/
185170
public function areOpen(): bool
186171
{
187172
return $this->pipes && $this->fileHandles;
188173
}
189174

190-
/**
191-
* {@inheritdoc}
192-
*/
193175
public function close()
194176
{
195177
parent::close();

0 commit comments

Comments
 (0)