You are here

traits.php in Zircon Profile 8

Namespace

Foo

File

vendor/symfony/class-loader/Tests/Fixtures/php5.4/traits.php
View source
<?php

namespace {
  trait TFoo {

  }
  class CFoo {
    use TFoo;

  }
}
namespace Foo {
  trait TBar {

  }
  interface IBar {

  }
  trait TFooBar {

  }
  class CBar implements IBar {
    use TBar;
    use TFooBar;

  }
}

Classes

Namesort descending Description
CBar
CFoo

Interfaces

Namesort descending Description
IBar

Traits

Namesort descending Description
TBar
TFoo
TFooBar