freshTimestamp() public method

Get a fresh MongoDate for the model.
public freshTimestamp ( ) : MongoDate
return MongoDate
Ejemplo n.º 1
0
 /**
  * Soft delete the record in the database.
  *
  * @return int
  */
 protected function softDelete()
 {
     $column = $this->model->getDeletedAtColumn();
     return $this->update(array($column => $this->model->freshTimestamp()));
 }