Created
May 29, 2012 10:18
-
-
Save mikeemoo/2823966 to your computer and use it in GitHub Desktop.
ContentPage
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\ExampleBundle\Entity; | |
use Doctrine\ORM\Mapping as ORM, | |
Lowpress\CmsBundle as CMS; | |
class ContentPage extends CMS\Entity\HtmlPage | |
{ | |
/** | |
* @ORM\Column(type="string", length="1024") | |
*/ | |
protected $content; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment