X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/realesbar/vendor/phpdocumentor/type-resolver/src/Types
home
/
gfecatvj
/
sites
/
realesbar
/
vendor
/
phpdocumentor
/
type-resolver
/
src
/
Types
/
📁
..
📄
AbstractList.php
(1.87 KB)
📄
AggregatedType.php
(2.7 KB)
📄
Array_.php
(724 B)
📄
Boolean.php
(608 B)
📄
Callable_.php
(621 B)
📄
ClassString.php
(1.14 KB)
📄
Collection.php
(1.64 KB)
📄
Compound.php
(1017 B)
📄
Context.php
(2.99 KB)
📄
ContextFactory.php
(13.63 KB)
📄
Expression.php
(1.04 KB)
📄
False_.php
(579 B)
📄
Float_.php
(607 B)
📄
Integer.php
(610 B)
📄
Intersection.php
(1.01 KB)
📄
Iterable_.php
(826 B)
📄
Mixed_.php
(626 B)
📄
Null_.php
(618 B)
📄
Nullable.php
(1.07 KB)
📄
Object_.php
(1.75 KB)
📄
Parent_.php
(726 B)
📄
Resource_.php
(625 B)
📄
Scalar.php
(678 B)
📄
Self_.php
(702 B)
📄
Static_.php
(1015 B)
📄
String_.php
(619 B)
📄
This.php
(843 B)
📄
True_.php
(576 B)
📄
Void_.php
(761 B)
Editing: Static_.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 http://phpdoc.org */ namespace phpDocumentor\Reflection\Types; use phpDocumentor\Reflection\Type; /** * Value Object representing the 'static' type. * * Self, as a Type, represents the class in which the associated element was called. This differs from self as self does * not take inheritance into account but static means that the return type is always that of the class of the called * element. * * See the documentation on late static binding in the PHP Documentation for more information on the difference between * static and self. * * @psalm-immutable */ final class Static_ implements Type { /** * Returns a rendered output of the Type as it would be used in a DocBlock. */ public function __toString() : string { return 'static'; } }
Upload File
Create Folder