Newscoop\Search\DocumentInterface::getIndexed PHP Method

getIndexed() public method

Get indexing date
public getIndexed ( ) : DateTime
return DateTime
    public function getIndexed();

Usage Example

コード例 #1
0
 /**
  * Test if article is indexed
  *
  * @param Newscoop\Entity\Article $article
  * @return bool
  */
 public function isIndexed(DocumentInterface $article)
 {
     return $article->getIndexed() !== null;
 }
All Usage Examples Of Newscoop\Search\DocumentInterface::getIndexed
DocumentInterface