Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/vendor/mck89/peast/lib/Peast/Syntax/Node/JSX/JSXExpressionContainer.php
Ðазад
<?php /** * This file is part of the Peast package * * (c) Marco Marchiò <marco.mm89@gmail.com> * * For the full copyright and license information refer to the LICENSE file * distributed with this source code */ namespace Peast\Syntax\Node\JSX; use Peast\Syntax\Node\Node; /** * A node that represents an expression container in JSX. * * @author Marco Marchiò <marco.mm89@gmail.com> */ class JSXExpressionContainer extends Node { /** * Map of node properties * * @var array */ protected $propertiesMap = array( "expression" => true ); /** * The wrapped expression * * @var \Peast\Syntax\Node\Expression|JSXEmptyExpression */ protected $expression; /** * Returns the wrapped expression * * @return \Peast\Syntax\Node\Expression|JSXEmptyExpression */ public function getExpression() { return $this->expression; } /** * Sets the wrapped expression * * @param \Peast\Syntax\Node\Expression|JSXEmptyExpression $expression Wrapped * expression * * @return $this */ public function setExpression($expression) { $this->assertType( $expression, array("Expression", "JSX\\JSXEmptyExpression") ); $this->expression = $expression; return $this; } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка