rector/rules/Transform/ValueObject/WrapReturn.php
Tomas Votruba cdc3b7adef Updated Rector to commit f451b0b8e1
f451b0b8e1 [PHP 8.0] Bump to promoted properties (#4)
2021-05-10 23:39:21 +00:00

40 lines
801 B
PHP

<?php
declare (strict_types=1);
namespace Rector\Transform\ValueObject;
use PHPStan\Type\ObjectType;
final class WrapReturn
{
/**
* @var string
*/
private $type;
/**
* @var string
*/
private $method;
/**
* @var bool
*/
private $isArrayWrap;
public function __construct(string $type, string $method, bool $isArrayWrap)
{
$this->type = $type;
$this->method = $method;
$this->isArrayWrap = $isArrayWrap;
}
public function getObjectType() : \PHPStan\Type\ObjectType
{
return new \PHPStan\Type\ObjectType($this->type);
}
public function getMethod() : string
{
return $this->method;
}
public function isArrayWrap() : bool
{
return $this->isArrayWrap;
}
}