Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F1432385
ReturnFactory.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
ReturnFactory.php
View Options
<?php
declare
(
strict_types
=
1
);
namespace
phpDocumentor\Reflection\DocBlock\Tags\Factory
;
use
phpDocumentor\Reflection\DocBlock\DescriptionFactory
;
use
phpDocumentor\Reflection\DocBlock\Tag
;
use
phpDocumentor\Reflection\DocBlock\Tags\Return_
;
use
phpDocumentor\Reflection\TypeResolver
;
use
phpDocumentor\Reflection\Types\Context
;
use
PHPStan\PhpDocParser\Ast\PhpDoc\PhpDocTagNode
;
use
PHPStan\PhpDocParser\Ast\PhpDoc\ReturnTagValueNode
;
use
Webmozart\Assert\Assert
;
use
function
is_string
;
/**
* @internal This class is not part of the BC promise of this library.
*/
final
class
ReturnFactory
implements
PHPStanFactory
{
private
DescriptionFactory
$descriptionFactory
;
private
TypeResolver
$typeResolver
;
public
function
__construct
(
TypeResolver
$typeResolver
,
DescriptionFactory
$descriptionFactory
)
{
$this
->
descriptionFactory
=
$descriptionFactory
;
$this
->
typeResolver
=
$typeResolver
;
}
public
function
create
(
PhpDocTagNode
$node
,
Context
$context
):
Tag
{
$tagValue
=
$node
->
value
;
Assert
::
isInstanceOf
(
$tagValue
,
ReturnTagValueNode
::
class
);
$description
=
$tagValue
->
getAttribute
(
'description'
);
if
(
is_string
(
$description
)
===
false
)
{
$description
=
$tagValue
->
description
;
}
return
new
Return_
(
$this
->
typeResolver
->
createType
(
$tagValue
->
type
,
$context
),
$this
->
descriptionFactory
->
create
(
$description
,
$context
)
);
}
public
function
supports
(
PhpDocTagNode
$node
,
Context
$context
):
bool
{
return
$node
->
value
instanceof
ReturnTagValueNode
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, May 16, 21:42 (1 d, 9 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
f3/b2/f2c2b5bc875d604d945652b8bb4a
Default Alt Text
ReturnFactory.php (1 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment