mirror of
https://gh.wpcy.net/https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2026-04-29 10:00:49 +08:00
modified: composer.lock modified: mu-plugin/v-sys-plugin-updater-mu.php modified: mu-plugin/v-sys-plugin-updater.php modified: mu-plugin/v-sys-theme-updater-mu.php modified: mu-plugin/v-sys-theme-updater.php modified: tests/ApiKeyHelperTest.php modified: update-api/app/Controllers/ApiController.php modified: update-api/app/Controllers/HomeController.php deleted: update-api/app/Controllers/KeyController.php modified: update-api/app/Core/Router.php modified: update-api/app/Models/HostsModel.php modified: update-api/config.php modified: update-api/public/install.php deleted: update-api/storage/test.sqlite
37 lines
1 KiB
PHP
37 lines
1 KiB
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace PhpParser\Node;
|
|
|
|
use PhpParser\Node;
|
|
use PhpParser\NodeAbstract;
|
|
|
|
class PropertyItem extends NodeAbstract {
|
|
/** @var Node\VarLikeIdentifier Name */
|
|
public VarLikeIdentifier $name;
|
|
/** @var null|Node\Expr Default */
|
|
public ?Expr $default;
|
|
|
|
/**
|
|
* Constructs a class property item node.
|
|
*
|
|
* @param string|Node\VarLikeIdentifier $name Name
|
|
* @param null|Node\Expr $default Default value
|
|
* @param array<string, mixed> $attributes Additional attributes
|
|
*/
|
|
public function __construct($name, ?Node\Expr $default = null, array $attributes = []) {
|
|
$this->attributes = $attributes;
|
|
$this->name = \is_string($name) ? new Node\VarLikeIdentifier($name) : $name;
|
|
$this->default = $default;
|
|
}
|
|
|
|
public function getSubNodeNames(): array {
|
|
return ['name', 'default'];
|
|
}
|
|
|
|
public function getType(): string {
|
|
return 'PropertyItem';
|
|
}
|
|
}
|
|
|
|
// @deprecated compatibility alias
|
|
class_alias(PropertyItem::class, Stmt\PropertyProperty::class);
|