Skip to content

Commit

Permalink
Fixed typos in Command Pipeline code samples
Browse files Browse the repository at this point in the history
  • Loading branch information
jedrzej committed Feb 26, 2015
1 parent d15965d commit 317bf75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bus.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ A command pipe is defined with a `handle` method, just like a middleware:
return DB::transaction(function() use ($command, $next)
{
return $next($command);
}
});
}

}
Expand All @@ -150,5 +150,5 @@ You may even define a `Closure` as a command pipe:
return DB::transaction(function() use ($command, $next)
{
return $next($command);
}
});
}]);

0 comments on commit 317bf75

Please sign in to comment.