getChanges() 추상적인 공개 메소드

Retrieve changes to the maillog since the provided timestamp.
abstract public getChanges ( integer $ts ) : array
$ts integer Timestamp.
리턴 array An array of messages (IMP_Maillog_Message objects) changed since the provided timestamp.
예제 #1
0
파일: Maillog.php 프로젝트: raz0rsdge/horde
 /**
  * Retrieve changes to the maillog since the provided timestamp.
  *
  * @param integer $ts  Timestamp.
  *
  * @return array  An array of messages (IMP_Maillog_Message objects)
  *                changed since the provided timestamp.
  */
 public function getChanges($ts)
 {
     return $this->storage->getChanges($ts);
 }