Fix: Public method name must not be prefixed with an underscore

This commit is contained in:
Regis Houssin 2015-06-27 20:37:22 +02:00
parent 5ac292f9ae
commit 5efea745a1

View File

@ -59,7 +59,7 @@ class DolCookie
* *
* @return void * @return void
*/ */
private function cryptCookie() private function _cryptCookie()
{ {
if (!empty($this->_myKey) && !empty($this->_iv)) if (!empty($this->_myKey) && !empty($this->_iv))
{ {
@ -79,7 +79,7 @@ class DolCookie
* *
* @return string * @return string
*/ */
private function decryptCookie() private function _decryptCookie()
{ {
if (!empty($this->_myKey) && !empty($this->_iv)) if (!empty($this->_myKey) && !empty($this->_iv))
{ {
@ -105,7 +105,7 @@ class DolCookie
* @param int $secure 0 or 1 * @param int $secure 0 or 1
* @return void * @return void
*/ */
public function _setCookie($cookie, $value, $expire=0, $path="/", $domain="", $secure=0) public function setCookie($cookie, $value, $expire=0, $path="/", $domain="", $secure=0)
{ {
$this->myCookie = $cookie; $this->myCookie = $cookie;
$this->myValue = $value; $this->myValue = $value;
@ -116,7 +116,7 @@ class DolCookie
//print 'key='.$this->myKey.' name='.$this->myCookie.' value='.$this->myValue.' expire='.$this->myExpire; //print 'key='.$this->myKey.' name='.$this->myCookie.' value='.$this->myValue.' expire='.$this->myExpire;
$this->cryptCookie(); $this->_cryptCookie();
} }
/** /**
@ -125,11 +125,11 @@ class DolCookie
* @param string $cookie Cookie name * @param string $cookie Cookie name
* @return string Decrypted value * @return string Decrypted value
*/ */
public function _getCookie($cookie) public function getCookie($cookie)
{ {
$this->myCookie = $cookie; $this->myCookie = $cookie;
$decryptValue = $this->decryptCookie(); $decryptValue = $this->_decryptCookie();
return $decryptValue; return $decryptValue;
} }