class Pow
Same name in this branch
- 11.1.x vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Pow.php \PhpParser\Node\Expr\AssignOp\Pow
Hierarchy
- class \PhpParser\NodeAbstract implements \PhpParser\Node, \PhpParser\JsonSerializable
Expanded class hierarchy of Pow
1 string reference to 'Pow'
- Connection::open in core/
modules/ sqlite/ src/ Driver/ Database/ sqlite/ Connection.php - Opens a client connection.
File
-
vendor/
nikic/ php-parser/ lib/ PhpParser/ Node/ Expr/ BinaryOp/ Pow.php, line 7
Namespace
PhpParser\Node\Expr\BinaryOpView source
class Pow extends BinaryOp {
public function getOperatorSigil() : string {
return '**';
}
public function getType() : string {
return 'Expr_BinaryOp_Pow';
}
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overriden Title |
---|---|---|---|---|
BinaryOp::$left | public | property | @var Expr The left hand side expression | |
BinaryOp::$right | public | property | @var Expr The right hand side expression | |
BinaryOp::getSubNodeNames | public | function | ||
BinaryOp::__construct | public | function | Constructs a binary operator node. | |
Pow::getOperatorSigil | public | function | Get the operator sigil for this binary operation. | Overrides BinaryOp::getOperatorSigil |
Pow::getType | public | function |