Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F1432000
DoctrineArrayItem.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
DoctrineArrayItem.php
View Options
<?php
declare
(
strict_types
=
1
);
namespace
PHPStan\PhpDocParser\Ast\PhpDoc\Doctrine
;
use
PHPStan\PhpDocParser\Ast\ConstExpr\ConstExprIntegerNode
;
use
PHPStan\PhpDocParser\Ast\ConstExpr\ConstExprStringNode
;
use
PHPStan\PhpDocParser\Ast\ConstExpr\ConstFetchNode
;
use
PHPStan\PhpDocParser\Ast\Node
;
use
PHPStan\PhpDocParser\Ast\NodeAttributes
;
use
PHPStan\PhpDocParser\Ast\Type\IdentifierTypeNode
;
/**
* @phpstan-import-type ValueType from DoctrineArgument
* @phpstan-type KeyType = ConstExprIntegerNode|ConstExprStringNode|IdentifierTypeNode|ConstFetchNode|null
*/
class
DoctrineArrayItem
implements
Node
{
use
NodeAttributes
;
/** @var KeyType */
public
$key
;
/** @var ValueType */
public
$value
;
/**
* @param KeyType $key
* @param ValueType $value
*/
public
function
__construct
(
$key
,
$value
)
{
$this
->
key
=
$key
;
$this
->
value
=
$value
;
}
public
function
__toString
():
string
{
if
(
$this
->
key
===
null
)
{
return
(
string
)
$this
->
value
;
}
return
$this
->
key
.
'='
.
$this
->
value
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, May 16, 21:19 (1 d, 11 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
3b/b7/0245bf2b3a83ae855484290bae87
Default Alt Text
DoctrineArrayItem.php (1 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment