mirror of
https://github.com/itflow-org/itflow
synced 2026-03-26 07:15:37 +00:00
Reintroduce Webklex IMAP for ticket processing as PHP-IMAP is no longer being developed. This is optional for now and considered beta can be found in cron/ticket_email_parser.php
This commit is contained in:
124
plugins/vendor/nesbot/carbon/src/Carbon/PHPStan/MacroMethodReflection.php
vendored
Normal file
124
plugins/vendor/nesbot/carbon/src/Carbon/PHPStan/MacroMethodReflection.php
vendored
Normal file
@@ -0,0 +1,124 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/**
|
||||
* This file is part of the Carbon package.
|
||||
*
|
||||
* (c) Brian Nesbitt <brian@nesbot.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Carbon\PHPStan;
|
||||
|
||||
use PHPStan\Reflection\ClassReflection;
|
||||
use PHPStan\Reflection\MethodReflection;
|
||||
use PHPStan\Reflection\ParametersAcceptor;
|
||||
use PHPStan\TrinaryLogic;
|
||||
use PHPStan\Type\Type;
|
||||
|
||||
use function preg_match;
|
||||
|
||||
class MacroMethodReflection implements MethodReflection
|
||||
{
|
||||
private ClassReflection $declaringClass;
|
||||
private string $methodName;
|
||||
private ParametersAcceptor $macroClosureType;
|
||||
private bool $static;
|
||||
private bool $final;
|
||||
private bool $deprecated;
|
||||
private ?string $docComment;
|
||||
|
||||
public function __construct(
|
||||
ClassReflection $declaringClass,
|
||||
string $methodName,
|
||||
ParametersAcceptor $macroClosureType,
|
||||
bool $static,
|
||||
bool $final,
|
||||
bool $deprecated,
|
||||
?string $docComment
|
||||
) {
|
||||
$this->declaringClass = $declaringClass;
|
||||
$this->methodName = $methodName;
|
||||
$this->macroClosureType = $macroClosureType;
|
||||
$this->static = $static;
|
||||
$this->final = $final;
|
||||
$this->deprecated = $deprecated;
|
||||
$this->docComment = $docComment;
|
||||
}
|
||||
|
||||
public function getDeclaringClass(): ClassReflection
|
||||
{
|
||||
return $this->declaringClass;
|
||||
}
|
||||
|
||||
public function isStatic(): bool
|
||||
{
|
||||
return $this->static;
|
||||
}
|
||||
|
||||
public function isPrivate(): bool
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
public function isPublic(): bool
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
public function getDocComment(): ?string
|
||||
{
|
||||
return $this->docComment;
|
||||
}
|
||||
|
||||
public function getName(): string
|
||||
{
|
||||
return $this->methodName;
|
||||
}
|
||||
|
||||
public function getPrototype(): \PHPStan\Reflection\ClassMemberReflection
|
||||
{
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getVariants(): array
|
||||
{
|
||||
return [$this->macroClosureType];
|
||||
}
|
||||
|
||||
public function isDeprecated(): TrinaryLogic
|
||||
{
|
||||
return TrinaryLogic::createFromBoolean(
|
||||
$this->deprecated ||
|
||||
preg_match('/@deprecated/i', $this->getDocComment() ?: '')
|
||||
);
|
||||
}
|
||||
|
||||
public function getDeprecatedDescription(): ?string
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public function isFinal(): TrinaryLogic
|
||||
{
|
||||
return TrinaryLogic::createFromBoolean($this->final);
|
||||
}
|
||||
|
||||
public function isInternal(): TrinaryLogic
|
||||
{
|
||||
return TrinaryLogic::createNo();
|
||||
}
|
||||
|
||||
public function getThrowType(): ?Type
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public function hasSideEffects(): TrinaryLogic
|
||||
{
|
||||
return TrinaryLogic::createMaybe();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user