Skip to content

Instantly share code, notes, and snippets.

@carlosocarvalho
Created September 13, 2016 14:23
Show Gist options
  • Save carlosocarvalho/431ef6c20d09a6ee63c23f3b43860958 to your computer and use it in GitHub Desktop.
Save carlosocarvalho/431ef6c20d09a6ee63c23f3b43860958 to your computer and use it in GitHub Desktop.
<?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