Documentation

ListPass extends CodeCleanerPass
in package

Validate that the list assignment.

Table of Contents

$atLeastPhp71  : mixed
__construct()  : mixed
afterTraverse()  : null|array<string|int, Node>
Called once after traversal.
beforeTraverse()  : null|array<string|int, Node>
Called once before traversal.
enterNode()  : mixed
Validate use of list assignment.
leaveNode()  : null|int|Node|array<string|int, Node>
Called when leaving a node.
isValidArrayItem()  : bool
Validate whether a given item in an array is valid for short assignment.

Properties

$atLeastPhp71

private mixed $atLeastPhp71

Methods

__construct()

public __construct() : mixed
Return values
mixed

afterTraverse()

Called once after traversal.

public afterTraverse(array<string|int, mixed> $nodes) : null|array<string|int, Node>

Return value semantics:

  • null: $nodes stays as-is
  • otherwise: $nodes is set to the return value
Parameters
$nodes : array<string|int, mixed>

Array of nodes

Return values
null|array<string|int, Node>

Array of nodes

beforeTraverse()

Called once before traversal.

public beforeTraverse(array<string|int, mixed> $nodes) : null|array<string|int, Node>

Return value semantics:

  • null: $nodes stays as-is
  • otherwise: $nodes is set to the return value
Parameters
$nodes : array<string|int, mixed>

Array of nodes

Return values
null|array<string|int, Node>

Array of nodes

enterNode()

Validate use of list assignment.

public enterNode(Node $node) : mixed
Parameters
$node : Node
Tags
throws
ParseErrorException

if the user used empty with anything but a variable

Return values
mixed

leaveNode()

Called when leaving a node.

public leaveNode(Node $node) : null|int|Node|array<string|int, Node>

Return value semantics:

  • null => $node stays as-is
  • NodeTraverser::REMOVE_NODE => $node is removed from the parent array
  • NodeTraverser::STOP_TRAVERSAL => Traversal is aborted. $node stays as-is
  • array (of Nodes) => The return value is merged into the parent array (at the position of the $node)
  • otherwise => $node is set to the return value
Parameters
$node : Node

Node

Return values
null|int|Node|array<string|int, Node>

Replacement node (or special return value)

isValidArrayItem()

Validate whether a given item in an array is valid for short assignment.

private static isValidArrayItem(Expr $item) : bool
Parameters
$item : Expr
Return values
bool

Search results