Skip to content

Instantly share code, notes, and snippets.

@cod3beat
Created November 17, 2015 07:05
Show Gist options
  • Save cod3beat/0560a61ce544ef808849 to your computer and use it in GitHub Desktop.
Save cod3beat/0560a61ce544ef808849 to your computer and use it in GitHub Desktop.
Excecuting Create Unpublished Command
<?php
class ChallengeController
{
public function store()
{
try {
// Mengeksekusi Command
$this->execute(CreateUnpublishedChallenge::class);
} catch (Exception $e) {
// ...
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment