Created
September 13, 2016 14:23
-
-
Save carlosocarvalho/431ef6c20d09a6ee63c23f3b43860958 to your computer and use it in GitHub Desktop.
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 | |
namespace Events; | |
class RegisterUserSMSEvent { | |
public function handler($data){ | |
//script para enviar sms | |
if(sms()->send($data)) | |
return true; | |
return false; | |
} | |
} | |
//** Events\RegisterUserSMSEvent.php |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment