Created
May 29, 2012 10:17
-
-
Save mikeemoo/2823951 to your computer and use it in GitHub Desktop.
HtmlPage
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Lowpress\CmsBundle\Entity; | |
use Doctrine\ORM\Mapping as ORM; | |
class HtmlPage extends Path | |
{ | |
/** | |
* @ORM\Id | |
* @ORM\Column(type="integer") | |
* @ORM\GeneratedValue(strategy="AUTO") | |
*/ | |
private $id; | |
/** | |
* @ORM\Column(type="string", length="255") | |
*/ | |
private $page_title; | |
/** | |
* @ORM\Column(type="string", length="1024") | |
*/ | |
private $meta_keywords; | |
/** | |
* @ORM\Column(type="string", length="1024") | |
*/ | |
private $meta_description; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment