Page MenuHomeWickedGov Phorge

True_.php
No OneTemporary

Size
845 B
Referenced Files
None
Subscribers
None

True_.php

<?php
declare(strict_types=1);
/**
* This file is part of phpDocumentor.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @link https://phpdoc.org
*/
namespace phpDocumentor\Reflection\PseudoTypes;
use phpDocumentor\Reflection\PseudoType;
use phpDocumentor\Reflection\Type;
use phpDocumentor\Reflection\Types\Boolean;
use function class_alias;
/**
* Value Object representing the PseudoType 'False', which is a Boolean type.
*
* @psalm-immutable
*/
final class True_ extends Boolean implements PseudoType
{
public function underlyingType(): Type
{
return new Boolean();
}
public function __toString(): string
{
return 'true';
}
}
class_alias(True_::class, 'phpDocumentor\Reflection\Types\True_', false);

File Metadata

Mime Type
text/x-php
Expires
Sat, May 16, 21:34 (1 d, 9 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
ac/27/e8981d06d66ea64abecf34364277
Default Alt Text
True_.php (845 B)

Event Timeline