Fix coding standards in comment.

This commit is contained in:
mark_story 2013-10-06 10:35:21 -03:00
parent 1ce89545bd
commit e85ac9339e

View file

@ -555,7 +555,7 @@ class Cache {
*
* {{{
* $model = $this;
* $results = Cache::remember('all_articles', function () use ($model) {
* $results = Cache::remember('all_articles', function() use ($model) {
* return $model->find('all');
* });
* }}}