BarClass.php

Same filename and directory in other branches
  1. 9 core/tests/Drupal/Tests/Core/DependencyInjection/Fixture/BarClass.php
  2. 8.9.x core/tests/Drupal/Tests/Core/DependencyInjection/Fixture/BarClass.php
  3. 11.x core/tests/Drupal/Tests/Core/DependencyInjection/Fixture/BarClass.php

Namespace

Drupal\Tests\Core\DependencyInjection\Fixture

File

core/tests/Drupal/Tests/Core/DependencyInjection/Fixture/BarClass.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\Core\DependencyInjection\Fixture;


/**
 * Stub class which acts as a service to test the container.
 *
 * @see \Drupal\Tests\Core\DependencyInjection\ContainerBuilderTest
 * @see \Drupal\Tests\Core\DependencyInjection\Fixture\BazClass
 */
class BarClass {
  
  /**
   * Storage for a protected BazClass object.
   *
   * @var \Drupal\Tests\Core\DependencyInjection\Fixture\BazClass
   */
  protected $baz;
  
  /**
   * Setter for our BazClass object.
   *
   * This method is called during the service initialization.
   *
   * @param \Drupal\Tests\Core\DependencyInjection\Fixture\BazClass $baz
   *   A BazClass object to store.
   */
  public function setBaz(BazClass $baz) {
    $this->baz = $baz;
  }
  
  /**
   * Getter for our BazClass object.
   *
   * @return \Drupal\Tests\Core\DependencyInjection\Fixture\BazClass
   *   The stored BazClass object.
   */
  public function getBaz() {
    return $this->baz;
  }

}

Classes

Title Deprecated Summary
BarClass Stub class which acts as a service to test the container.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.