Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F1432229
TemplateTagValueNode.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
TemplateTagValueNode.php
View Options
<?php
declare
(
strict_types
=
1
);
namespace
PHPStan\PhpDocParser\Ast\PhpDoc
;
use
PHPStan\PhpDocParser\Ast\NodeAttributes
;
use
PHPStan\PhpDocParser\Ast\Type\TypeNode
;
use
function
trim
;
class
TemplateTagValueNode
implements
PhpDocTagValueNode
{
use
NodeAttributes
;
/** @var non-empty-string */
public
string
$name
;
public
?
TypeNode
$bound
;
public
?
TypeNode
$default
;
public
?
TypeNode
$lowerBound
;
/** @var string (may be empty) */
public
string
$description
;
/**
* @param non-empty-string $name
*/
public
function
__construct
(
string
$name
,
?
TypeNode
$bound
,
string
$description
,
?
TypeNode
$default
=
null
,
?
TypeNode
$lowerBound
=
null
)
{
$this
->
name
=
$name
;
$this
->
bound
=
$bound
;
$this
->
lowerBound
=
$lowerBound
;
$this
->
default
=
$default
;
$this
->
description
=
$description
;
}
public
function
__toString
():
string
{
$upperBound
=
$this
->
bound
!==
null
?
" of {$this->bound}"
:
''
;
$lowerBound
=
$this
->
lowerBound
!==
null
?
" super {$this->lowerBound}"
:
''
;
$default
=
$this
->
default
!==
null
?
" = {$this->default}"
:
''
;
return
trim
(
"{$this->name}{$upperBound}{$lowerBound}{$default} {$this->description}"
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, May 16, 21:32 (1 d, 9 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
ad/88/193dea5763e0c80b31eb075577dc
Default Alt Text
TemplateTagValueNode.php (1 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment