format
[PHP-P10.git] / Uplink / EventHandler.interface.php
index e5b1ab58ba237fa379aa551b9c56002af69ec294..c33ce38eb975b0c82bbd691bf4a5bbbca61a0be7 100644 (file)
@@ -6,7 +6,7 @@
  * it under the terms of the GNU General Public License as published by *
  * the Free Software Foundation, either version 3 of the License, or    *
  * (at your option) any later version.                                  *
- *                                                                      * 
+ *                                                                      *
  * This program is distributed in the hope that it will be useful,      *
  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
@@ -16,7 +16,7 @@
  * along with this program. If not, see <http://www.gnu.org/licenses/>. *
  *                                                                      *
  ************************************************************************
- * 
+ *
  *  Uplink/EventHandler.interface.php
  *
  * This file contains the Uplink EventHandler interface.
  */
 
 interface EventHandler {
-       
+
        public function event_newserver($server, $isBurst);
        public function event_squit($server);
-       
+
        public function event_connect($user, $isBurst);
        public function event_nick($user, $newNick);
        public function event_usermode($user, $modes);
        public function event_quit($user, $reason);
        public function event_away($user, $away);
-       
+
        public function event_join($user, $channel, $isBurst);
        public function event_part($user, $channel, $reason);
        public function event_kick($user, $target, $channel, $reason);
        public function event_chanmode($user, $channel, $modes);
-       
+
        public function event_chanmessage($user, $channel, $message);
        public function event_channotice($user, $channel, $message);
        public function event_chanctcp($user, $channel, $command, $text);
@@ -47,11 +47,11 @@ interface EventHandler {
        public function event_privnotice($user, $target, $message);
        public function event_privctcp($user, $target, $command, $text);
        public function event_privctcpreply($user, $target, $command, $text);
-       
-       
+
+
        public function event_preparse($from, $command, $arguments);
        public function event_unknown_cmd($from, $command, $arguments);
-       
+
 }
 
 ?>
\ No newline at end of file