Skip to content

Instantly share code, notes, and snippets.

@cod3beat
Created November 17, 2015 08:00
Show Gist options
  • Save cod3beat/1a2136ae14ccb28d2ff1 to your computer and use it in GitHub Desktop.
Save cod3beat/1a2136ae14ccb28d2ff1 to your computer and use it in GitHub Desktop.
Register Developer
<?php
class EmailMembershipController
{
public function store()
{
try {
$this->execute(RegisterDeveloper::class);
} catch (Exception $e) {
// ...
}
}
}
class FacebookMembershipController
{
public function store()
{
try {
$this->execute(RegisterDeveloper::class);
} catch (Exception $e) {
// ...
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment