Created
November 17, 2015 08:00
-
-
Save cod3beat/1a2136ae14ccb28d2ff1 to your computer and use it in GitHub Desktop.
Register Developer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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