Browse Source

added activity method to session.

Taylor Otwell 13 years ago
parent
commit
a6c083f311
1 changed files with 10 additions and 0 deletions
  1. 10 0
      laravel/session/payload.php

+ 10 - 0
laravel/session/payload.php

@@ -262,6 +262,16 @@ class Payload {
 		return $this->get(Session::csrf_token);
 		return $this->get(Session::csrf_token);
 	}
 	}
 
 
+	/**
+	 * Get the last activity for the session.
+	 *
+	 * @return int
+	 */
+	public function activity()
+	{
+		return $this->session['last_activity'];
+	}
+
 	/**
 	/**
 	 * Store the session payload in storage.
 	 * Store the session payload in storage.
 	 *
 	 *