1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
<?php
declare(strict_types=1);
namespace ProxyManagerTestAsset;
use BadMethodCallException;
/**
* Base test class to play around with new method type definitions that came with PHP 8.0.0
*/
class ClassWithPhp80TypedMethods
{
public function mixedType(mixed $parameter): mixed
{
throw new BadMethodCallException('Not supposed to be run');
}
/** Note: the false type cannot be used standalone, and must be part of a union type */
public function falseType(false|self $parameter): false|self
{
throw new BadMethodCallException('Not supposed to be run');
}
public function unionNullableType(bool|null $parameter): bool|null
{
throw new BadMethodCallException('Not supposed to be run');
}
public function unionReverseNullableType(null|bool $parameter): null|bool
{
throw new BadMethodCallException('Not supposed to be run');
}
public function unionNullableTypeWithDefaultValue(bool|string|null $parameter = null): bool|string|null
{
throw new BadMethodCallException('Not supposed to be run');
}
public function unionType(ClassWithPhp80TypedMethods|\stdClass $parameter): ClassWithPhp80TypedMethods|\stdClass
{
throw new BadMethodCallException('Not supposed to be run');
}
public function staticType(self $parameter): static
{
throw new BadMethodCallException('Not supposed to be run');
}
public function selfAndBoolType(self|bool $parameter): self|bool
{
throw new BadMethodCallException('Not supposed to be run');
}
}
|