class SomeAnnotationWithConstructorWithoutParams

Hierarchy

Expanded class hierarchy of SomeAnnotationWithConstructorWithoutParams

File

drupal/core/vendor/doctrine/common/tests/Doctrine/Tests/Common/Annotations/DocParserTest.php, line 1155

Namespace

Doctrine\Tests\Common\Annotations
View source
class SomeAnnotationWithConstructorWithoutParams {
  function __construct() {
    $this->data = "Some data";
  }
  public $data;
  public $name;

}

Members