Skip to content

Commit

Permalink
Update in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
dmongeau committed Feb 4, 2014
1 parent ece75ae commit cb3859b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Folklore/Image/ImageServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ public function boot()
//Get the full path of an image
$fullPath = $app->make('path.public').'/'.$path;

// Serve the image response. If there is an file missing
// exception, throw a 404.
// Serve the image response. If there is a file missing
// exception or parse exception, throw a 404.
try
{
$response = $app['image']->serve($fullPath,array(
$response = $app['image']->serve($fullPath, array(
'write_image' => $app['config']['image::write_image'],
'custom_filters_only' => $app['config']['image::serve_custom_filters_only']
));
Expand Down

0 comments on commit cb3859b

Please sign in to comment.