123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
-
- namespace Doctrine\Tests\Models\CMS;
-
-
- class CmsComment
- {
-
-
- public $id;
-
-
- public $topic;
-
-
- public $text;
-
-
- public $article;
-
- public function setArticle(CmsArticle $article) {
- $this->article = $article;
- }
-
- public function __toString() {
- return __CLASS__."[id=".$this->id."]";
- }
- }
|