Skip to content

Commit 317bf75

Browse files
committed
Fixed typos in Command Pipeline code samples
1 parent d15965d commit 317bf75

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bus.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ A command pipe is defined with a `handle` method, just like a middleware:
136136
return DB::transaction(function() use ($command, $next)
137137
{
138138
return $next($command);
139-
}
139+
});
140140
}
141141

142142
}
@@ -150,5 +150,5 @@ You may even define a `Closure` as a command pipe:
150150
return DB::transaction(function() use ($command, $next)
151151
{
152152
return $next($command);
153-
}
153+
});
154154
}]);

0 commit comments

Comments
 (0)