class Value in Zircon Profile 8.0
Same name in this branch
- 8.0 core/lib/Drupal/Core/Render/Element/Value.php \Drupal\Core\Render\Element\Value
- 8.0 vendor/doctrine/collections/lib/Doctrine/Common/Collections/Expr/Value.php \Doctrine\Common\Collections\Expr\Value
Same name and namespace in other branches
- 8 vendor/doctrine/collections/lib/Doctrine/Common/Collections/Expr/Value.php \Doctrine\Common\Collections\Expr\Value
Hierarchy
- class \Doctrine\Common\Collections\Expr\Value implements Expression
Expanded class hierarchy of Value
1 file declares its use of Value
- ExpressionBuilder.php in vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ ExpressionBuilder.php
23 string references to 'Value'
- BatchTestChainedForm::buildForm in core/
modules/ system/ tests/ modules/ batch_test/ src/ Form/ BatchTestChainedForm.php - Form constructor.
- config_events_test.schema.yml in core/
modules/ config/ tests/ config_events_test/ config/ schema/ config_events_test.schema.yml - core/modules/config/tests/config_events_test/config/schema/config_events_test.schema.yml
- config_test.schema.yml in core/
modules/ config/ tests/ config_test/ config/ schema/ config_test.schema.yml - core/modules/config/tests/config_test/config/schema/config_test.schema.yml
- core.data_types.schema.yml in core/
config/ schema/ core.data_types.schema.yml - core/config/schema/core.data_types.schema.yml
- core.entity.schema.yml in core/
config/ schema/ core.entity.schema.yml - core/config/schema/core.entity.schema.yml
File
- vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ Expr/ Value.php, line 22
Namespace
Doctrine\Common\Collections\ExprView source
class Value implements Expression {
/**
* @var mixed
*/
private $value;
/**
* @param mixed $value
*/
public function __construct($value) {
$this->value = $value;
}
/**
* @return mixed
*/
public function getValue() {
return $this->value;
}
/**
* {@inheritDoc}
*/
public function visit(ExpressionVisitor $visitor) {
return $visitor
->walkValue($this);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Value:: |
private | property | ||
Value:: |
public | function | ||
Value:: |
public | function |
Overrides Expression:: |
|
Value:: |
public | function |