apns-php
 All Data Structures Files Functions Variables Groups Pages
Interface.php
Go to the documentation of this file.
1 <?php
2 /**
3  * @file
4  * ApnsPHP_Log_Interface interface definition.
5  *
6  * LICENSE
7  *
8  * This source file is subject to the new BSD license that is bundled
9  * with this package in the file LICENSE.txt.
10  * It is also available through the world-wide-web at this URL:
11  * http://code.google.com/p/apns-php/wiki/License
12  * If you did not receive a copy of the license and are unable to
13  * obtain it through the world-wide-web, please send an email
14  * to aldo.armiento@gmail.com so we can send you a copy immediately.
15  *
16  * @author (C) 2010 Aldo Armiento (aldo.armiento@gmail.com)
17  * @version $Id$
18  */
19 
20 /**
21  * @defgroup ApnsPHP_Log Log
22  * @ingroup ApplePushNotificationService
23  */
24 
25 /**
26  * The Log Interface.
27  *
28  * Implement the Log Interface and pass the object instance to all
29  * ApnsPHP_Abstract based class to use a custom log.
30  *
31  * @ingroup ApnsPHP_Log
32  */
34 {
35  /**
36  * Logs a message.
37  *
38  * @param $sMessage @type string The message.
39  */
40  public function log($sMessage);
41 }
void log(string $sMessage)
Logs a message.
The Log Interface.
Definition: Interface.php:33