Browse Source

Merge pull request #933 from franzliedke/patch-22

Request::time()
Dayle Rees 12 years ago
parent
commit
dab2c79298
1 changed files with 10 additions and 0 deletions
  1. 10 0
      laravel/request.php

+ 10 - 0
laravel/request.php

@@ -177,6 +177,16 @@ class Request {
 	{
 		return static::foundation()->headers->get('referer');
 	}
+	
+	/**
+	 * Get the timestamp of the time when the request was started.
+	 *
+	 * @return int
+	 */
+	public static function time()
+	{
+		return (int) LARAVEL_START;
+	}
 
 	/**
 	 * Determine if the current request is via the command line.