Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: ParameterSignature.php
<?php declare(strict_types = 1); namespace PHPStan\Reflection\SignatureMap; use PHPStan\Reflection\PassedByReference; use PHPStan\Type\Type; class ParameterSignature { /** @var string */ private $name; /** @var bool */ private $optional; /** @var \PHPStan\Type\Type */ private $type; /** @var \PHPStan\Reflection\PassedByReference */ private $passedByReference; /** @var bool */ private $variadic; public function __construct( string $name, bool $optional, Type $type, PassedByReference $passedByReference, bool $variadic ) { $this->name = $name; $this->optional = $optional; $this->type = $type; $this->passedByReference = $passedByReference; $this->variadic = $variadic; } public function getName(): string { return $this->name; } public function isOptional(): bool { return $this->optional; } public function getType(): Type { return $this->type; } public function passedByReference(): PassedByReference { return $this->passedByReference; } public function isVariadic(): bool { return $this->variadic; } }