1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-06 03:50:04 +02:00

Add PHPUnit

This commit is contained in:
Daniel Neto 2025-04-02 10:53:30 -03:00
parent 1467777757
commit 5959dd49d7
1366 changed files with 118633 additions and 13161 deletions

View file

@ -2,22 +2,22 @@
namespace PhpParser\Node\Expr;
use PhpParser\Node;
use PhpParser\Node\Expr;
use PhpParser\Node\Identifier;
class NullsafePropertyFetch extends Expr
{
class NullsafePropertyFetch extends Expr {
/** @var Expr Variable holding object */
public $var;
public Expr $var;
/** @var Identifier|Expr Property name */
public $name;
public Node $name;
/**
* Constructs a nullsafe property fetch node.
*
* @param Expr $var Variable holding object
* @param string|Identifier|Expr $name Property name
* @param array $attributes Additional attributes
* @param Expr $var Variable holding object
* @param string|Identifier|Expr $name Property name
* @param array<string, mixed> $attributes Additional attributes
*/
public function __construct(Expr $var, $name, array $attributes = []) {
$this->attributes = $attributes;
@ -25,11 +25,11 @@ class NullsafePropertyFetch extends Expr
$this->name = \is_string($name) ? new Identifier($name) : $name;
}
public function getSubNodeNames() : array {
public function getSubNodeNames(): array {
return ['var', 'name'];
}
public function getType() : string {
public function getType(): string {
return 'Expr_NullsafePropertyFetch';
}
}