Major refactoring cleanup: - Add new controller architecture (class-controller-*.php) - Add new settings-v2 UI (views/settings-v2/) - Add new CSS architecture (agentic-sidebar.css, tokens) - Add esbuild build pipeline (scripts/build.js, package.json) - Add composer dependencies (vendor/) - Add frontend src directory (assets/js/src/index.jsx) - Add documentation files - Remove old/obsolete files (class-settings.php, old CSS) This commits all pending changes from previous refactoring efforts.
38 lines
992 B
PHP
38 lines
992 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace PhpParser\Node;
|
|
|
|
use PhpParser\Node;
|
|
use PhpParser\NodeAbstract;
|
|
|
|
class DeclareItem extends NodeAbstract {
|
|
/** @var Node\Identifier Key */
|
|
public Identifier $key;
|
|
/** @var Node\Expr Value */
|
|
public Expr $value;
|
|
|
|
/**
|
|
* Constructs a declare key=>value pair node.
|
|
*
|
|
* @param string|Node\Identifier $key Key
|
|
* @param Node\Expr $value Value
|
|
* @param array<string, mixed> $attributes Additional attributes
|
|
*/
|
|
public function __construct($key, Node\Expr $value, array $attributes = []) {
|
|
$this->attributes = $attributes;
|
|
$this->key = \is_string($key) ? new Node\Identifier($key) : $key;
|
|
$this->value = $value;
|
|
}
|
|
|
|
public function getSubNodeNames(): array {
|
|
return ['key', 'value'];
|
|
}
|
|
|
|
public function getType(): string {
|
|
return 'DeclareItem';
|
|
}
|
|
}
|
|
|
|
// @deprecated compatibility alias
|
|
class_alias(DeclareItem::class, Stmt\DeclareDeclare::class);
|