Browse Source

Fixed namespace issue when registering a session driver with the extend closure

Stefan Neubig 12 years ago
parent
commit
ac2e7c6a2d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/session.php

+ 1 - 1
laravel/session.php

@@ -1,4 +1,4 @@
-<?php namespace Laravel;
+<?php namespace Laravel; use Closure;
 
 
 class Session {
 class Session {