Skip to content

Commit

Permalink
Merge pull request #4 from m1x0n/feature/remove-void-return
Browse files Browse the repository at this point in the history
Removed void from phpdoc return type
  • Loading branch information
Barry O Sullivan committed Mar 21, 2017
2 parents 816dfd0 + 27eab69 commit e036978
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/Contracts/Bus/Dispatcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,13 @@ interface Dispatcher
* Dispatches a Command to the bus.
*
* @param Command $command
* @return void
*/

public function dispatch(Command $command);

/**
* Dispatches a Collection of Commands to the bus.
*
* @param Collection $commands
* @return void
*/

public function dispatch_collection(Collection $commands);
}

0 comments on commit e036978

Please sign in to comment.