コード例 #1
0
ファイル: HttpRequest.php プロジェクト: kevinard/IdeaManager
 public function updateHistory(array $values = array())
 {
     if ($this->getUrl(true) != $this->getPreviousUrl()) {
         return $this->_history->update($values);
     }
 }
コード例 #2
0
ファイル: HttpRequest.php プロジェクト: hubvioos/42framework
 public function updateHistory()
 {
     if ($this->getUrl(true) != $this->getPreviousUrl()) {
         return $this->_history->update(array('url' => $this->getUrl(true), 'ipAddress' => $this->getIpAddress(), 'userAgent' => $this->getUserAgent()));
     }
 }