for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace DERHANSEN\SfEventMgt\Domain\Model;
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
* The TYPO3 project - inspiring people to share!
*/
/**
* Organisator
* @author AlexPixelant
class Organisator extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
{
* Name of Organisator
* @var string
protected $name = '';
* E-Mail of Organisator
protected $email = '';
* Phone number of Organisator
protected $phone = '';
* Image of Organisator
* @var \TYPO3\CMS\Extbase\Domain\Model\FileReference
protected $image = null;
* Returns the name
* @return string $name
public function getName()
return $this->name;
}
* Sets the name
* @param string $name The name
* @return void
public function setName($name)
$this->name = $name;
* Returns the e-mail
* @return string $email
public function getEmail()
return $this->email;
* Sets the email
* @param string $email The e-mail
public function setEmail($email)
$this->email = $email;
* Returns the phone
* @return string $phone
public function getPhone()
return $this->phone;
* Sets the phone
* @param string $phone The phone
public function setPhone($phone)
$this->phone = $phone;
* Returns the image
* @return \TYPO3\CMS\Extbase\Domain\Model\FileReference $image
public function getImage()
return $this->image;
* Sets the image
* @param \TYPO3\CMS\Extbase\Domain\Model\FileReference $image The image
public function setImage(\TYPO3\CMS\Extbase\Domain\Model\FileReference $image)
$this->image = $image;