Skip to content

Instantly share code, notes, and snippets.

@cod3beat
Last active November 17, 2015 07:11
Show Gist options
  • Save cod3beat/9ce8e9825a2c2660483e to your computer and use it in GitHub Desktop.
Save cod3beat/9ce8e9825a2c2660483e to your computer and use it in GitHub Desktop.
SimpleBus
<?php
class ChallengeController
{
public function store()
{
try {
$this->commandBus()->handle(new CreateUnpublishedChallenge(
'Nama',
'Ringkasan',
'Deskripsi',
1000,
10
));
} catch (Exception $e) {
// ...
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment