Skip to content

Instantly share code, notes, and snippets.

@shizonic
Created March 13, 2015 09:24
Show Gist options
  • Save shizonic/9e8574c70fcbeb7ae5e3 to your computer and use it in GitHub Desktop.
Save shizonic/9e8574c70fcbeb7ae5e3 to your computer and use it in GitHub Desktop.
<?php
namespace Flow\Schwabe\Domain\Model;
/* *
* This script belongs to the TYPO3 Flow package "Flow.Schwabe". *
* *
* */
use TYPO3\Flow\Annotations as Flow;
use Doctrine\ORM\Mapping as ORM;
/**
* @Flow\Entity
*/
class Reviewer {
/**
* @var string
*/
protected $email;
/**
* @return string
*/
public function getEmail() {
return $this->email;
}
/**
* @param string $email
* @return void
*/
public function setEmail($email) {
$this->email = $email;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment