Файловый менеджер - Редактировать - /home/kckglobal/public_html/portal/vendor/nunomaduro/larastan/src/Reflection/EloquentBuilderMethodReflection.php
Назад
<?php declare(strict_types=1); namespace NunoMaduro\Larastan\Reflection; use Illuminate\Database\Eloquent\Builder; use PHPStan\Reflection\ClassMemberReflection; use PHPStan\Reflection\ClassReflection; use PHPStan\Reflection\FunctionVariant; use PHPStan\Reflection\MethodReflection; use PHPStan\Reflection\ParameterReflection; use PHPStan\TrinaryLogic; use PHPStan\Type\Generic\TemplateTypeMap; use PHPStan\Type\ObjectType; use PHPStan\Type\Type; final class EloquentBuilderMethodReflection implements MethodReflection { /** * @var string */ private $methodName; /** * @var ClassReflection */ private $classReflection; /** * @var ParameterReflection[] */ private $parameters; /** * @var Type */ private $returnType; /** * @var bool */ private $isVariadic; /** * @param string $methodName * @param ClassReflection $classReflection * @param ParameterReflection[] $parameters * @param Type|null $returnType * @param bool $isVariadic */ public function __construct(string $methodName, ClassReflection $classReflection, array $parameters, ?Type $returnType = null, bool $isVariadic = false) { $this->methodName = $methodName; $this->classReflection = $classReflection; $this->parameters = $parameters; $this->returnType = $returnType ?? new ObjectType(Builder::class); $this->isVariadic = $isVariadic; } public function getDeclaringClass(): ClassReflection { return $this->classReflection; } public function isStatic(): bool { return true; } public function isPrivate(): bool { return false; } public function isPublic(): bool { return true; } public function getName(): string { return $this->methodName; } public function getPrototype(): ClassMemberReflection { return $this; } /** * {@inheritdoc} */ public function getVariants(): array { return [ new FunctionVariant( TemplateTypeMap::createEmpty(), null, $this->parameters, $this->isVariadic, $this->returnType ), ]; } public function getDocComment(): ?string { return null; } public function isDeprecated(): TrinaryLogic { return TrinaryLogic::createNo(); } public function getDeprecatedDescription(): ?string { return null; } public function isFinal(): TrinaryLogic { return TrinaryLogic::createNo(); } public function isInternal(): TrinaryLogic { return TrinaryLogic::createNo(); } public function getThrowType(): ?Type { return null; } public function hasSideEffects(): TrinaryLogic { return TrinaryLogic::createMaybe(); } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.28 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка