‪TYPO3CMS  10.4
Info.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  * This file is part of the TYPO3 CMS project.
5  *
6  * It is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU General Public License, either version 2
8  * of the License, or any later version.
9  *
10  * For the full copyright and license information, please read the
11  * LICENSE.txt file that was distributed with this source code.
12  *
13  * The TYPO3 project - inspiring people to share!
14  */
15 
17 
19 
24 {
25 
29  protected ‪$name = '';
30 
36  public function ‪setName(‪$name)
37  {
38  $this->content = ‪$name;
39  }
40 
46  public function ‪getName()
47  {
48  return ‪$this->name;
49  }
50 
56  public function ‪__toString()
57  {
58  return ‪$this->name;
59  }
60 }
‪ExtbaseTeam\BlogExample\Domain\Model\Info\__toString
‪string __toString()
Definition: Info.php:55
‪ExtbaseTeam\BlogExample\Domain\Model\Info
Definition: Info.php:24
‪ExtbaseTeam\BlogExample\Domain\Model\Info\setName
‪setName($name)
Definition: Info.php:35
‪TYPO3\CMS\Extbase\DomainObject\AbstractEntity
Definition: AbstractEntity.php:23
‪ExtbaseTeam\BlogExample\Domain\Model\Info\getName
‪string getName()
Definition: Info.php:45
‪ExtbaseTeam\BlogExample\Domain\Model\Info\$name
‪string $name
Definition: Info.php:28
‪ExtbaseTeam\BlogExample\Domain\Model
Definition: Administrator.php:16