‪TYPO3CMS  9.5
Tag.php
Go to the documentation of this file.
1 <?php
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
21 {
25  protected ‪$name = '';
26 
32  public function ‪__construct(‪$name)
33  {
34  $this->name = ‪$name;
35  }
36 
42  public function ‪getName()
43  {
44  return ‪$this->name;
45  }
46 
52  public function ‪__toString()
53  {
54  return $this->‪getName();
55  }
56 }
‪ExtbaseTeam\BlogExample\Domain\Model\Tag\$name
‪string $name
Definition: Tag.php:24
‪ExtbaseTeam\BlogExample\Domain\Model\Tag\__toString
‪string __toString()
Definition: Tag.php:51
‪ExtbaseTeam\BlogExample\Domain\Model\Tag\getName
‪string getName()
Definition: Tag.php:41
‪TYPO3\CMS\Extbase\DomainObject\AbstractValueObject
Definition: AbstractValueObject.php:23
‪ExtbaseTeam\BlogExample\Domain\Model\Tag\__construct
‪__construct($name)
Definition: Tag.php:31
‪ExtbaseTeam\BlogExample\Domain\Model
Definition: Administrator.php:3
‪ExtbaseTeam\BlogExample\Domain\Model\Tag
Definition: Tag.php:21