Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. AssignmentExpression.php

function AssignmentExpression::setOperator

Sets the assignment operator

Parameters

string $operator Assignment operator:

Return value

$this

File

vendor/mck89/peast/lib/Peast/Syntax/Node/AssignmentExpression.php, line 69

Class

AssignmentExpression
A node that represents an assignment expression. For example: a = b

Namespace

Peast\Syntax\Node

Code

public function setOperator($operator) {
    $this->operator = $operator;
    return $this;
}
RSS feed
Powered by Drupal