getTimestamp() public method

public getTimestamp ( )
コード例 #1
0
ファイル: Clock.php プロジェクト: letsdrink/ouzo
 public function isBeforeOrEqualTo(Clock $other)
 {
     return $this->getTimestamp() <= $other->getTimestamp();
 }