class Div
Same name in this branch
- 11.1.x vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/Div.php \PhpParser\Node\Expr\AssignOp\Div
Hierarchy
- class \PhpParser\NodeAbstract implements \PhpParser\Node, \PhpParser\JsonSerializable
Expanded class hierarchy of Div
9 string references to 'Div'
- card.component.yml in core/
profiles/ demo_umami/ themes/ umami/ components/ card/ card.component.yml - core/profiles/demo_umami/themes/umami/components/card/card.component.yml
- ConfigFormBase::checkConfigOverrides in core/
lib/ Drupal/ Core/ Form/ ConfigFormBase.php - Form #after_build callback: Adds message if overrides exist.
- FieldPluginBase::elementWrapperType in core/
modules/ views/ src/ Plugin/ views/ field/ FieldPluginBase.php - Returns a wrapper HTML element for the field..
- HTMLRestrictions::getTextContainerElementList in core/
modules/ ckeditor5/ src/ HTMLRestrictions.php - Gets a list of CKEditor 5's `$block` text container elements.
- Markup::elementType in core/
modules/ views/ src/ Plugin/ views/ field/ Markup.php - Returns an HTML element based upon the field's element type.
File
-
vendor/
nikic/ php-parser/ lib/ PhpParser/ Node/ Expr/ BinaryOp/ Div.php, line 7
Namespace
PhpParser\Node\Expr\BinaryOpView source
class Div extends BinaryOp {
public function getOperatorSigil() : string {
return '/';
}
public function getType() : string {
return 'Expr_BinaryOp_Div';
}
}
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. | |
Div::getOperatorSigil | public | function | Get the operator sigil for this binary operation. | Overrides BinaryOp::getOperatorSigil |
Div::getType | public | function |