Skip to content

Commit

Permalink
Merge pull request #604 from grena/patch-1
Browse files Browse the repository at this point in the history
[Doc] Add missing coma and fix indentation in README.md
  • Loading branch information
lsmith77 committed May 27, 2015
2 parents 0f05ff6 + ed59f36 commit 6fd9dd1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,11 +149,11 @@ class MyController extends Controller
// RedirectResponse object
$imagemanagerResponse = $this->container
->get('liip_imagine.controller')
->filterAction(
$this->request // http request
'uploads/foo.jpg', // original image you want to apply a filter to
'my_thumb' // filter defined in config.yml
);
->filterAction(
$this->request, // http request
'uploads/foo.jpg', // original image you want to apply a filter to
'my_thumb' // filter defined in config.yml
);
// string to put directly in the "src" of the tag <img>
$cacheManager = $this->container->get('liip_imagine.cache.manager');
Expand Down

0 comments on commit 6fd9dd1

Please sign in to comment.