Model/Document.php
changeset 23 b435f8055cb4
parent 20 985f1992895d
child 27 8551d844b4f3
equal deleted inserted replaced
22:99c15cfe420b 23:b435f8055cb4
    32     
    32     
    33     /**
    33     /**
    34      * @var ArrayCollection $tags
    34      * @var ArrayCollection $tags
    35      */
    35      */
    36     protected $tags;
    36     protected $tags;
       
    37     
       
    38     /**
       
    39      * @var string tagsStr
       
    40      */
       
    41     protected $tagsStr;
    37     
    42     
    38     
    43     
    39     /**
    44     /**
    40      * Get id
    45      * Get id
    41      *
    46      *
    76         $this->externalId = $externalId;
    81         $this->externalId = $externalId;
    77     }
    82     }
    78     
    83     
    79     /**
    84     /**
    80      * TODO: (non-PHPdoc)
    85      * TODO: (non-PHPdoc)
    81      * @see IRI\Bundle\WikiTagBundle\Model.BaseDocumentInterface::getExternalId()
    86      * @see IRI\Bundle\WikiTagBundle\Model.DocumentInterface::getExternalId()
    82      */
    87      */
    83     function getExternalId()
    88     function getExternalId()
    84     {
    89     {
    85         return $this->externalId;
    90         return $this->externalId;
    86     }
    91     }
    87     
    92     
    88     /**
    93     /**
    89      * TODO: (non-PHPdoc)
    94      * TODO: (non-PHPdoc)
    90      * @see IRI\Bundle\WikiTagBundle\Model.BaseDocumentInterface::getTags()
    95      * @see IRI\Bundle\WikiTagBundle\Model.DocumentInterface::getTags()
    91      */
    96      */
    92     function getTags()
    97     function getTags()
    93     {
    98     {
    94         return $this->tags;
    99         return $this->tags;
    95     }
   100     }
    96     
   101     
       
   102     /**
       
   103      * TODO: (non-PHPdoc)
       
   104      * @see IRI\Bundle\WikiTagBundle\Model.DocumentInterface::setTagsStr()
       
   105      */
       
   106     function setTagsStr($tagsStr)
       
   107     {
       
   108         $this->tagsStr = $tagsStr;
       
   109     }
       
   110 
       
   111     /**
       
   112     * TODO: (non-PHPdoc)
       
   113     * @see IRI\Bundle\WikiTagBundle\Model.DocumentInterface::getTagsStr()
       
   114     */
       
   115     function getTagsStr()
       
   116     {
       
   117         return $this->tagsStr;
       
   118     }
       
   119     
       
   120 
    97 }
   121 }