Newscoop\Search\DocumentInterface::getIndexed PHP 메소드

getIndexed() 공개 메소드

Get indexing date
public getIndexed ( ) : DateTime
리턴 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