Page MenuHomeWickedGov Phorge

TryStatement.php
No OneTemporary

Size
975 B
Referenced Files
None
Subscribers
None

TryStatement.php

<?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\CatchClause;
use Microsoft\PhpParser\Node\FinallyClause;
use Microsoft\PhpParser\Node\StatementNode;
use Microsoft\PhpParser\Token;
class TryStatement extends StatementNode {
/** @var Token */
public $tryKeyword;
/** @var StatementNode */
public $compoundStatement;
/** @var CatchClause[]|null */
public $catchClauses;
/** @var FinallyClause|null */
public $finallyClause;
const CHILD_NAMES = [
'tryKeyword',
'compoundStatement',
'catchClauses',
'finallyClause'
];
}

File Metadata

Mime Type
text/x-php
Expires
Sat, May 16, 18:34 (5 h, 1 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
65/f3/68189199f0384cf2f28a4cdb347d
Default Alt Text
TryStatement.php (975 B)

Event Timeline