You are here

class Reference in Zircon Profile 8

Same name in this branch
  1. 8 vendor/symfony/dependency-injection/Reference.php \Symfony\Component\DependencyInjection\Reference
  2. 8 vendor/symfony/validator/Tests/Fixtures/Reference.php \Symfony\Component\Validator\Tests\Fixtures\Reference
Same name and namespace in other branches
  1. 8.0 vendor/symfony/validator/Tests/Fixtures/Reference.php \Symfony\Component\Validator\Tests\Fixtures\Reference

Hierarchy

  • class \Symfony\Component\Validator\Tests\Fixtures\Reference

Expanded class hierarchy of Reference

3 files declare their use of Reference
Abstract2Dot5ApiTest.php in vendor/symfony/validator/Tests/Validator/Abstract2Dot5ApiTest.php
AbstractLegacyApiTest.php in vendor/symfony/validator/Tests/Validator/AbstractLegacyApiTest.php
AbstractValidatorTest.php in vendor/symfony/validator/Tests/Validator/AbstractValidatorTest.php
2 string references to 'Reference'
EntityViewBuilderTest::testEntityViewBuilderCacheWithReferences in core/modules/system/src/Tests/Entity/EntityViewBuilderTest.php
Tests entity render cache with references.
field_ui_form_field_ui_field_storage_add_form_alter in core/modules/field_ui/field_ui.module
Implements hook_form_FORM_ID_alter() for 'field_ui_field_storage_add_form'.

File

vendor/symfony/validator/Tests/Fixtures/Reference.php, line 14

Namespace

Symfony\Component\Validator\Tests\Fixtures
View source
class Reference {
  public $value;
  private $privateValue;
  public function setPrivateValue($privateValue) {
    $this->privateValue = $privateValue;
  }
  public function getPrivateValue() {
    return $this->privateValue;
  }

}

Members