class LogicalOr
Same name in this branch
- 11.1.x vendor/phpunit/phpunit/src/Framework/Constraint/Operator/LogicalOr.php \PHPUnit\Framework\Constraint\LogicalOr
Hierarchy
- class \PhpParser\NodeAbstract implements \PhpParser\Node, \PhpParser\JsonSerializable
Expanded class hierarchy of LogicalOr
1 file declares its use of LogicalOr
- CyclomaticComplexityCalculatingVisitor.php in vendor/
sebastian/ complexity/ src/ Visitor/ CyclomaticComplexityCalculatingVisitor.php
File
-
vendor/
nikic/ php-parser/ lib/ PhpParser/ Node/ Expr/ BinaryOp/ LogicalOr.php, line 7
Namespace
PhpParser\Node\Expr\BinaryOpView source
class LogicalOr extends BinaryOp {
public function getOperatorSigil() : string {
return 'or';
}
public function getType() : string {
return 'Expr_BinaryOp_LogicalOr';
}
}
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. | |
LogicalOr::getOperatorSigil | public | function | Get the operator sigil for this binary operation. | Overrides BinaryOp::getOperatorSigil |
LogicalOr::getType | public | function |