Skip to content

Commit cb3859b

Browse files
committed
Update in comments
1 parent ece75ae commit cb3859b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Folklore/Image/ImageServiceProvider.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ public function boot()
3535
//Get the full path of an image
3636
$fullPath = $app->make('path.public').'/'.$path;
3737

38-
// Serve the image response. If there is an file missing
39-
// exception, throw a 404.
38+
// Serve the image response. If there is a file missing
39+
// exception or parse exception, throw a 404.
4040
try
4141
{
42-
$response = $app['image']->serve($fullPath,array(
42+
$response = $app['image']->serve($fullPath, array(
4343
'write_image' => $app['config']['image::write_image'],
4444
'custom_filters_only' => $app['config']['image::serve_custom_filters_only']
4545
));

0 commit comments

Comments
 (0)