Completed
Push — work-fleets ( c62b27...6257a1 )
by SuperNova.WS
06:02
created
includes/classes/DBStaticMessages.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -467,6 +467,12 @@
 block discarded – undo
467 467
   {$StartRec}, 25;");
468 468
   }
469 469
 
470
+  /**
471
+   * @param integer $message_type
472
+   * @param string $from_unsafe
473
+   * @param string $subject_unsafe
474
+   * @param string $text_unsafe
475
+   */
470 476
   public static function db_message_insert_all($message_type, $from_unsafe, $subject_unsafe, $text_unsafe) {
471 477
     $message_type_safe = intval($message_type);
472 478
     $from_safe = db_escape($from_unsafe);
Please login to merge, or discard this patch.
includes/db/db_queries.php 1 patch
Doc Comments   +15 added lines, -10 removed lines patch added patch discarded remove patch
@@ -169,6 +169,11 @@  discard block
 block discarded – undo
169 169
  */
170 170
 // OK v4
171 171
 // TODO - вынести в отдельный класс
172
+/**
173
+ * @param string $db_id_field_name
174
+ * @param string $db_table_name
175
+ * @param string $db_value_field_name
176
+ */
172 177
 function db_get_set_unique_id_value($current_value_unsafe, $db_id_field_name, $db_table_name, $db_value_field_name) {
173 178
   $current_value_safe = db_escape($current_value_unsafe);
174 179
   $value_id = classSupernova::$db->doSelectFetch("SELECT `{$db_id_field_name}` FROM {{{$db_table_name}}} WHERE `{$db_value_field_name}` = '{$current_value_safe}' LIMIT 1 FOR UPDATE");
@@ -487,8 +492,8 @@  discard block
 block discarded – undo
487 492
 
488 493
 
489 494
 /**
490
- * @param $user_id
491
- * @param $change_type
495
+ * @param integer $user_id
496
+ * @param integer $change_type
492 497
  * @param $dark_matter
493 498
  * @param $comment_unsafe
494 499
  * @param $rowUserNameUnsafe
@@ -509,7 +514,7 @@  discard block
 block discarded – undo
509 514
 /**
510 515
  * @param $user_id_safe
511 516
  *
512
- * @return array|bool|mysqli_result|null
517
+ * @return integer
513 518
  */
514 519
 function db_referral_get_by_id($user_id_safe) {
515 520
   $old_referral = classSupernova::$db->doSelectFetch("SELECT * FROM {{referrals}} WHERE `id` = {$user_id_safe} LIMIT 1 FOR UPDATE;");
@@ -540,9 +545,9 @@  discard block
 block discarded – undo
540 545
 
541 546
 // Quests ***********************************************************************************************************
542 547
 /**
543
- * @param $query_add_select
548
+ * @param string $query_add_select
544 549
  * @param $query_add_from
545
- * @param $query_add_where
550
+ * @param string $query_add_where
546 551
  *
547 552
  * @return array|bool|mysqli_result|null
548 553
  */
@@ -586,11 +591,11 @@  discard block
 block discarded – undo
586 591
 }
587 592
 
588 593
 /**
589
- * @param $quest_name_unsafe
590
- * @param $quest_type
591
- * @param $quest_description_unsafe
594
+ * @param string $quest_name_unsafe
595
+ * @param integer $quest_type
596
+ * @param string $quest_description_unsafe
592 597
  * @param $quest_conditions
593
- * @param $quest_rewards
598
+ * @param string $quest_rewards
594 599
  * @param $quest_id
595 600
  */
596 601
 function db_quest_update($quest_name_unsafe, $quest_type, $quest_description_unsafe, $quest_conditions, $quest_rewards, $quest_id) {
@@ -674,7 +679,7 @@  discard block
 block discarded – undo
674 679
 
675 680
 /**
676 681
  * @param $payment_id
677
- * @param $payment_status
682
+ * @param integer $payment_status
678 683
  * @param $comment_unsafe
679 684
  */
680 685
 function db_payment_update($payment_id, $payment_status, $comment_unsafe) {
Please login to merge, or discard this patch.
includes/classes/DBStaticUnit.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -118,6 +118,9 @@
 block discarded – undo
118 118
     return classSupernova::$gc->cacheOperator->db_ins_record(LOC_UNIT, $set);
119 119
   }
120 120
 
121
+  /**
122
+   * @param integer $unit_location_type
123
+   */
121 124
   public static function db_unit_list_delete($user_id = 0, $unit_location_type, $unit_location_id = 0, $unit_snid = 0) {
122 125
     $where = array('unit_location_type' => $unit_location_type);
123 126
     ($unit_location_id = idval($unit_location_id)) ? $where['unit_location_id'] = $unit_location_id : false;
Please login to merge, or discard this patch.
includes/db.php 1 patch
Doc Comments   +7 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 
12 12
 /**
13 13
  * @param $adjust
14
- * @param $location
14
+ * @param integer $location
15 15
  * @param $object_id
16 16
  */
17 17
 function db_change_units_perform($adjust, $location, $object_id) {
@@ -32,7 +32,6 @@  discard block
 block discarded – undo
32 32
  * @param       $user
33 33
  * @param       $planet
34 34
  * @param array $unit_list
35
- * @param null  $query
36 35
  */
37 36
 function db_change_units(&$user, &$planet, $unit_list) {
38 37
   $query = array(
@@ -74,6 +73,9 @@  discard block
 block discarded – undo
74 73
   db_change_units_perform($query[LOC_USER], LOC_USER, $user['id']);
75 74
   db_change_units_perform($query[LOC_PLANET], LOC_PLANET, $planet['id']);
76 75
 }
76
+/**
77
+ * @param string $table
78
+ */
77 79
 function sn_db_perform($table, $values, $type = 'insert', $options = false) {
78 80
   $field_set = '';
79 81
 
@@ -163,6 +165,9 @@  discard block
 block discarded – undo
163 165
 
164 166
 
165 167
 
168
+/**
169
+ * @param boolean $transaction_should_be_started
170
+ */
166 171
 function sn_db_transaction_check($transaction_should_be_started = null) {
167 172
   return classSupernova::$gc->db->getTransaction()->check($transaction_should_be_started);
168 173
 }
Please login to merge, or discard this patch.
includes/classes/db_mysql.php 1 patch
Doc Comments   +28 added lines, -4 removed lines patch added patch discarded remove patch
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
   /**
158 158
    * @param string $query
159 159
    *
160
-   * @return mixed|string
160
+   * @return string
161 161
    */
162 162
   public function replaceTablePlaceholders($query) {
163 163
     $sql = $query;
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
   }
172 172
 
173 173
   /**
174
-   * @param $query
174
+   * @param string $query
175 175
    */
176 176
   protected function logQuery($query) {
177 177
     if (!classSupernova::$config->debug) {
@@ -301,6 +301,10 @@  discard block
 block discarded – undo
301 301
   }
302 302
 
303 303
 
304
+  /**
305
+   * @param string $table
306
+   * @param integer $replace
307
+   */
304 308
   protected function doSet($table, $fieldsAndValues, $replace = DB_INSERT_PLAIN) {
305 309
     $tableSafe = $this->db_escape($table);
306 310
     $safeFieldsAndValues = implode(',', $this->safeFieldsEqualValues($fieldsAndValues));
@@ -349,6 +353,10 @@  discard block
 block discarded – undo
349 353
 
350 354
 
351 355
   // INSERTERS
356
+
357
+  /**
358
+   * @param string $query
359
+   */
352 360
   public function doInsertComplex($query) {
353 361
     return $this->doSql($query);
354 362
   }
@@ -369,7 +377,7 @@  discard block
 block discarded – undo
369 377
    * Values should be passed as-is
370 378
    *
371 379
    * @param string   $table
372
-   * @param array    $fields
380
+   * @param string[]    $fields
373 381
    * @param string[] $values
374 382
    *
375 383
    * @return array|bool|mysqli_result|null
@@ -426,7 +434,7 @@  discard block
 block discarded – undo
426 434
    * Self-contained - means no params used
427 435
    * Such queries usually used to make large amount of in-base calculations
428 436
    *
429
-   * @param $query
437
+   * @param string $query
430 438
    *
431 439
    * @return array|bool|mysqli_result|null
432 440
    */
@@ -434,6 +442,9 @@  discard block
 block discarded – undo
434 442
     return $this->doSql($query);
435 443
   }
436 444
 
445
+  /**
446
+   * @param boolean $isOneRecord
447
+   */
437 448
   protected function doUpdateWhere($table, $fieldsSet, $fieldsAdjust = array(), $where = array(), $isOneRecord = DB_RECORDS_ALL) {
438 449
     $tableSafe = $this->db_escape($table);
439 450
 
@@ -457,10 +468,16 @@  discard block
 block discarded – undo
457 468
     return $this->doSql($query);
458 469
   }
459 470
 
471
+  /**
472
+   * @param string $table
473
+   */
460 474
   public function doUpdateRowSet($table, $fieldsAndValues, $where) {
461 475
     return $this->doUpdateWhere($table, $fieldsAndValues, array(), $where, DB_RECORD_ONE);
462 476
   }
463 477
 
478
+  /**
479
+   * @param string $table
480
+   */
464 481
   public function doUpdateTableSet($table, $fieldsAndValues, $where = array()) {
465 482
     return $this->doUpdateWhere($table, $fieldsAndValues, array(), $where, DB_RECORDS_ALL);
466 483
   }
@@ -727,6 +744,10 @@  discard block
 block discarded – undo
727 744
   }
728 745
 
729 746
   // TODO Заменить это на новый логгер
747
+
748
+  /**
749
+   * @param string $query
750
+   */
730 751
   protected function security_watch_user_queries($query) {
731 752
     global $user;
732 753
 
@@ -750,6 +771,9 @@  discard block
 block discarded – undo
750 771
   }
751 772
 
752 773
 
774
+  /**
775
+   * @param string $query
776
+   */
753 777
   public function security_query_check_bad_words($query) {
754 778
     if ($this->skipQueryCheck) {
755 779
       return;
Please login to merge, or discard this patch.