Browse Source

Removing some static keywords

Jose Lorenzo Rodriguez 12 years ago
parent
commit
072779eeb4
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/Network/Session.php

+ 2 - 2
src/Network/Session.php

@@ -417,7 +417,7 @@ class Session {
  *
  * @return void
  */
-	public static function clear() {
+	public function clear() {
 		$_SESSION = [];
 		$this->renew();
 	}
@@ -436,7 +436,7 @@ class Session {
  *
  * @return void
  */
-	public static function renew() {
+	public function renew() {
 		if (!$this->_hasSession()) {
 			return;
 		}