Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F1431792
EchoStatement.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1004 B
Referenced Files
None
Subscribers
None
EchoStatement.php
View Options
<?php
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
namespace
Microsoft\PhpParser\Node\Statement
;
use
Microsoft\PhpParser\Node\StatementNode
;
use
Microsoft\PhpParser\Node\DelimitedList\ExpressionList
;
use
Microsoft\PhpParser\Token
;
/**
* This represents either a literal echo statement (`echo expr`)
* or a short echo tag (`<?= expr...`)
*/
class
EchoStatement
extends
StatementNode
{
/**
* @var Token|null this is null if generated from `<?=`
*/
public
$echoKeyword
;
/** @var ExpressionList */
public
$expressions
;
/** @var Token */
public
$semicolon
;
const
CHILD_NAMES
=
[
'echoKeyword'
,
'expressions'
,
'semicolon'
,
];
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, May 16, 21:04 (1 d, 15 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
24/46/048699ef5334ccdd154d8c932bd3
Default Alt Text
EchoStatement.php (1004 B)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment