‪TYPO3CMS  10.4
Entity.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 {
30  protected ‪$name;
31 
37  public function ‪__construct(‪$name)
38  {
39  $this->‪setName(‪$name);
40  }
41 
47  public function ‪setName(‪$name)
48  {
49  $this->name = ‪$name;
50  }
51 
57  public function ‪getName()
58  {
59  return ‪$this->name;
60  }
61 }
‪TYPO3\CMS\Extbase\Tests\Fixture\Entity\setName
‪setName($name)
Definition: Entity.php:46
‪TYPO3\CMS\Extbase\Tests\Fixture
Definition: ClassWithGettersAndSetters.php:16
‪TYPO3\CMS\Extbase\Tests\Fixture\Entity\getName
‪string getName()
Definition: Entity.php:56
‪TYPO3\CMS\Extbase\Tests\Fixture\Entity
Definition: Entity.php:24
‪TYPO3\CMS\Extbase\Tests\Fixture\Entity\__construct
‪__construct($name)
Definition: Entity.php:36
‪TYPO3\CMS\Extbase\DomainObject\AbstractEntity
Definition: AbstractEntity.php:23
‪TYPO3\CMS\Extbase\Tests\Fixture\Entity\$name
‪string $name
Definition: Entity.php:29