You are here

class Value in Zircon Profile 8.0

Same name in this branch
  1. 8.0 core/lib/Drupal/Core/Render/Element/Value.php \Drupal\Core\Render\Element\Value
  2. 8.0 vendor/doctrine/collections/lib/Doctrine/Common/Collections/Expr/Value.php \Doctrine\Common\Collections\Expr\Value
Same name and namespace in other branches
  1. 8 vendor/doctrine/collections/lib/Doctrine/Common/Collections/Expr/Value.php \Doctrine\Common\Collections\Expr\Value

Hierarchy

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

... See full list

File

vendor/doctrine/collections/lib/Doctrine/Common/Collections/Expr/Value.php, line 22

Namespace

Doctrine\Common\Collections\Expr
View 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

Namesort descending Modifiers Type Description Overrides
Value::$value private property
Value::getValue public function
Value::visit public function Overrides Expression::visit
Value::__construct public function