Browse Source

pass response in laravel done event.

Taylor Otwell 13 years ago
parent
commit
17bd505ff6
2 changed files with 2 additions and 2 deletions
  1. 1 1
      laravel/laravel.php
  2. 1 1
      laravel/profiling/profiler.php

+ 1 - 1
laravel/laravel.php

@@ -246,4 +246,4 @@ $response->send();
 |
 */
 
-Event::fire('laravel.done');
+Event::fire('laravel.done', array($response));

+ 1 - 1
laravel/profiling/profiler.php

@@ -79,7 +79,7 @@ class Profiler {
 		// We'll attach the profiler to the "done" event so that we can easily
 		// attach the profiler output to the end of the output sent to the
 		// browser. This will display the profiler's nice toolbar.
-		Event::listen('laravel.done', function()
+		Event::listen('laravel.done', function($response)
 		{
 			echo Profiler::render();
 		});