You are here

RegistryAutoloadTestTraitTest.php in Registry Autoload 7

Tests that traits work properly.

File

tests/modules/registry_autoload_test/src/Cache/RegistryAutoloadTestTraitTest.php
View source
<?php

/**
 * @file
 * Tests that traits work properly.
 */
namespace Drupal\registry_autoload_test\Cache;

class RegistryAutoloadTraitTest {
  use RegistryAutoloadTestTestTrait;

  /**
   * Constructs a RegistryAutoloadTraitTest object.
   */
  public function __construct() {
    print "Hello Class using trait.\n";
    $this
      ->foo();
  }

}

Classes