Completed
Push — development ( a1cb11...6640f1 )
by Sebastian
13s
created
include/classes/pushnotification.class.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -2,6 +2,9 @@
 block discarded – undo
2 2
 	class PushNotification extends Base {
3 3
 		var $tableSettings = 'push_notification_settings';
4 4
 		
5
+		/**
6
+		 * @param string $file
7
+		 */
5 8
 		private static function getClassesInFile($file){
6 9
 			$classes = array();
7 10
 			$tokens = token_get_all(file_get_contents($file));
Please login to merge, or discard this patch.
include/classes/usersettings.class.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -8,6 +8,9 @@
 block discarded – undo
8 8
 		protected $account_id = null;
9 9
 		private $__lazyWrite;
10 10
 		
11
+		/**
12
+		 * @param integer $account_id
13
+		 */
11 14
 		public function __construct($account_id, $lazy_write = true){
12 15
 			$this->account_id = $account_id;
13 16
 			$this->__lazyWrite = $lazy_write;
Please login to merge, or discard this patch.
include/classes/notification.class.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -140,6 +140,7 @@
 block discarded – undo
140 140
   /**
141 141
    * Send a specific notification setup in notification_settings
142 142
    * @param type string Notification type
143
+   * @param string $strType
143 144
    * @return bool
144 145
    **/
145 146
   public function sendNotification($account_id, $strType, $aMailData) {
Please login to merge, or discard this patch.