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:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user