You are here

class Author in Zircon Profile 8.0

Same name in this branch
  1. 8.0 vendor/sebastian/comparator/tests/_files/Author.php \SebastianBergmann\Comparator\Author
  2. 8.0 vendor/phpunit/phpunit/tests/_files/Author.php \Author
  3. 8.0 vendor/zendframework/zend-feed/src/Reader/Collection/Author.php \Zend\Feed\Reader\Collection\Author
Same name and namespace in other branches
  1. 8 vendor/sebastian/comparator/tests/_files/Author.php \SebastianBergmann\Comparator\Author

An author.

Hierarchy

  • class \SebastianBergmann\Comparator\Author

Expanded class hierarchy of Author

14 string references to 'Author'
CommentAdminOverview::buildForm in core/modules/comment/src/Form/CommentAdminOverview.php
Form constructor for the comment overview administration form.
CommentViewsData::getViewsData in core/modules/comment/src/CommentViewsData.php
Returns views data for the entity type.
comment_entity_extra_field_info in core/modules/comment/comment.module
Implements hook_entity_extra_field_info().
comment_token_info in core/modules/comment/comment.tokens.inc
Implements hook_token_info().
hook_token_info in core/lib/Drupal/Core/Utility/token.api.php
Provide information about available placeholder tokens and token types.

... See full list

File

vendor/sebastian/comparator/tests/_files/Author.php, line 17

Namespace

SebastianBergmann\Comparator
View source
class Author {

  // the order of properties is important for testing the cycle!
  public $books = array();
  private $name = '';
  public function __construct($name) {
    $this->name = $name;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
Author::$books public property
Author::$name private property
Author::__construct public function