Completed
Pull Request — development (#2540)
by
unknown
02:46
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.