Some EOF fixes

Signed-off-by: Gergely POLONKAI (W00d5t0ck) <polesz@w00d5t0ck.info>
This commit is contained in:
Gergely POLONKAI (W00d5t0ck) 2012-09-17 00:30:36 +02:00
parent b4165a28ef
commit fae603ed54
6 changed files with 6 additions and 6 deletions

View File

@ -189,4 +189,4 @@ class CodeChunk
{ {
return $this->content; return $this->content;
} }
} }

View File

@ -195,4 +195,4 @@ class Comment
{ {
return $this->user; return $this->user;
} }
} }

View File

@ -293,4 +293,4 @@ class Post implements Taggable
{ {
return $this->id; return $this->id;
} }
} }

View File

@ -31,4 +31,4 @@ class Tag extends BaseTag
* @ORM\OneToMany(targetEntity="Tagging", mappedBy="tag", fetch="EAGER") * @ORM\OneToMany(targetEntity="Tagging", mappedBy="tag", fetch="EAGER")
*/ */
protected $tagging; protected $tagging;
} }

View File

@ -33,4 +33,4 @@ class Tagging extends BaseTagging
* @ORM\ManyToOne(targetEntity="Tag") * @ORM\ManyToOne(targetEntity="Tag")
*/ */
protected $tag; protected $tag;
} }

View File

@ -135,4 +135,4 @@ class User implements UserInterface
{ {
return $this->password; return $this->password;
} }
} }