Install psalm as dev, sync scripts updates
This commit is contained in:
119
vendor/vimeo/psalm/stubs/Php81.phpstub
vendored
Normal file
119
vendor/vimeo/psalm/stubs/Php81.phpstub
vendored
Normal file
@@ -0,0 +1,119 @@
|
||||
<?php
|
||||
namespace {
|
||||
interface UnitEnum {
|
||||
/** @var non-empty-string $name */
|
||||
public readonly string $name;
|
||||
|
||||
/**
|
||||
* @psalm-pure
|
||||
* @return list<static>
|
||||
*/
|
||||
public static function cases(): array;
|
||||
}
|
||||
|
||||
interface BackedEnum extends UnitEnum
|
||||
{
|
||||
/** @var non-empty-string $name */
|
||||
public readonly string $name;
|
||||
public readonly int|string $value;
|
||||
|
||||
/**
|
||||
* @psalm-pure
|
||||
*/
|
||||
public static function from(string|int $value): static;
|
||||
|
||||
/**
|
||||
* @psalm-pure
|
||||
*/
|
||||
public static function tryFrom(string|int $value): ?static;
|
||||
|
||||
/**
|
||||
* @psalm-pure
|
||||
* @return list<static>
|
||||
*/
|
||||
public static function cases(): array;
|
||||
}
|
||||
|
||||
class ReflectionClass implements Reflector {
|
||||
/** @psalm-pure */
|
||||
public function isEnum(): bool {}
|
||||
}
|
||||
|
||||
class ReflectionProperty implements Reflector
|
||||
{
|
||||
/**
|
||||
* Starting from PHP 8.1, this method is pure, and has no effect.
|
||||
*
|
||||
* @psalm-pure
|
||||
*/
|
||||
public function setAccessible(bool $accessible): void {}
|
||||
}
|
||||
|
||||
class ReflectionMethod extends ReflectionFunctionAbstract
|
||||
{
|
||||
/**
|
||||
* Starting from PHP 8.1, this method is pure, and has no effect.
|
||||
*
|
||||
* @psalm-pure
|
||||
*/
|
||||
public function setAccessible(bool $accessible): void {}
|
||||
}
|
||||
|
||||
/** @psalm-immutable */
|
||||
class ReflectionEnum extends ReflectionClass implements Reflector
|
||||
{
|
||||
public function getBackingType(): ?ReflectionType;
|
||||
public function getCase(string $name): ReflectionEnumUnitCase;
|
||||
/** @return list<ReflectionEnumUnitCase> */
|
||||
public function getCases(): array;
|
||||
public function hasCase(string $name): bool;
|
||||
public function isBacked(): bool;
|
||||
}
|
||||
|
||||
/** @psalm-immutable */
|
||||
class ReflectionEnumUnitCase extends ReflectionClassConstant implements Reflector
|
||||
{
|
||||
public function getEnum(): ReflectionEnum;
|
||||
public function getValue(): UnitEnum;
|
||||
}
|
||||
|
||||
/** @psalm-immutable */
|
||||
class ReflectionEnumBackedCase extends ReflectionEnumUnitCase implements Reflector
|
||||
{
|
||||
public function getBackingValue(): int|string;
|
||||
}
|
||||
|
||||
/** @psalm-immutable */
|
||||
class ReflectionIntersectionType extends ReflectionType {
|
||||
/** @return non-empty-list<ReflectionNamedType> */
|
||||
public function getTypes(): array {}
|
||||
|
||||
/** @return false */
|
||||
public function allowsNull(): bool {}
|
||||
}
|
||||
}
|
||||
|
||||
namespace FTP {
|
||||
final class Connection {}
|
||||
}
|
||||
|
||||
namespace IMAP {
|
||||
final class Connection {}
|
||||
}
|
||||
|
||||
namespace LDAP {
|
||||
final class Connection {}
|
||||
final class Result {}
|
||||
final class ResultEntry {}
|
||||
}
|
||||
|
||||
namespace PgSql {
|
||||
final class Connection {}
|
||||
final class Result {}
|
||||
final class Lob {}
|
||||
}
|
||||
|
||||
namespace PSpell {
|
||||
final class Config {}
|
||||
final class Dictionary {}
|
||||
}
|
||||
Reference in New Issue
Block a user