1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-10-28 19:14:04 +01:00

Move phpdoc to native types

This commit is contained in:
Jordi Boggiano
2022-04-20 09:21:58 +02:00
parent 2695fa86cd
commit 7952a83e0c
117 changed files with 432 additions and 766 deletions

View File

@@ -34,20 +34,14 @@ class ProcessHandler extends AbstractProcessingHandler
*/
private $process;
/**
* @var string
*/
private $command;
private string $command;
/**
* @var string|null
*/
private $cwd;
private ?string $cwd;
/**
* @var resource[]
*/
private $pipes = [];
private array $pipes = [];
/**
* @var array<int, string[]>
@@ -177,7 +171,7 @@ class ProcessHandler extends AbstractProcessingHandler
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function close(): void
{