Browse Source

Fix typo in memory driver.

Signed-off-by: Taylor Otwell <taylorotwell@gmail.com>
Taylor Otwell 13 years ago
parent
commit
da67b1bc66
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/cache/drivers/memory.php

+ 1 - 1
laravel/cache/drivers/memory.php

@@ -82,7 +82,7 @@ class Memory extends Driver {
 	 */
 	public function flush()
 	{
-		$this->stroage = array();
+		$this->storage = array();
 	}
 
 }