]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - scripts/smsqueuehandler.php
Remove common code from Subscriptions, make tags link visible
[quix0rs-gnu-social.git] / scripts / smsqueuehandler.php
index f8b2e9d53e1d734c9fd3937413d6aa8bbe781b44..38f2f11febb4e6f812da9eb8f65d7a75348c481e 100755 (executable)
@@ -33,22 +33,27 @@ require_once(INSTALLDIR . '/lib/queuehandler.php');
 
 set_error_handler('common_error_handler');
 
-class SmsQueueHandler extends QueueHandler {
+class SmsQueueHandler extends QueueHandler
+{
     
-    function transport() {
+    function transport()
+    {
         return 'sms';
     }
 
-    function start() {
+    function start()
+    {
         $this->log(LOG_INFO, "INITIALIZE");
         return true;
     }
 
-    function handle_notice($notice) {
+    function handle_notice($notice)
+    {
         return mail_broadcast_notice_sms($notice);
     }
     
-    function finish() {
+    function finish()
+    {
     }
 }