8000 removed whitespaces · symfony/symfony@773932b · GitHub
[go: up one dir, main page]

Skip to content

Commit 773932b

Browse files
committed
removed whitespaces
1 parent 46e70ea commit 773932b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Symfony/Component/Process/Process.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -305,14 +305,14 @@ public function wait($callback = null)
305305
if (null !== $callback) {
306306
$this->callback = $this->buildCallback($callback);
307307
}
308-
308+
309309
do {
310310
$this->checkTimeout();
311311
$running = defined('PHP_WINDOWS_VERSION_BUILD') ? $this->isRunning() : $this->processPipes->hasOpenHandles();
312312
$close = !defined('PHP_WINDOWS_VERSION_BUILD') || !$running;;
313313
$this->readPipes(true, $close);
314314
} while ($running);
315-
315+
316316
while ($this->isRunning()) {
317317
usleep(1000);
318318
}
@@ -963,7 +963,7 @@ private function readPipes($blocking, $close)
963963
} else {
964964
$result = $this->processPipes->read($blocking);
965965
}
966-
966+
967967
foreach ($result as $type => $data) {
968968
if (3 == $type) {
969969
$this->fallbackExitcode = (int) $data;

0 commit comments

Comments
 (0)
0