Completed
Push — work-fleets ( cb2521...9eb2f3 )
by SuperNova.WS
08:26
created
classes/Fleet.php 1 patch
Doc Comments   +5 added lines, -4 removed lines patch added patch discarded remove patch
@@ -999,7 +999,7 @@  discard block
 block discarded – undo
999 999
   /**
1000 1000
    * Set current resource list from array of units
1001 1001
    *
1002
-   * @param array $resource_list
1002
+   * @param integer[] $resource_list
1003 1003
    */
1004 1004
   public function resourcesSet($resource_list) {
1005 1005
     if (!empty($this->propertiesAdjusted['resource_list'])) {
@@ -1047,7 +1047,7 @@  discard block
 block discarded – undo
1047 1047
   }
1048 1048
 
1049 1049
   /**
1050
-   * @param array $rate
1050
+   * @param integer[] $rate
1051 1051
    *
1052 1052
    * @return float
1053 1053
    */
@@ -1078,8 +1078,6 @@  discard block
 block discarded – undo
1078 1078
    * Restores fleet or resources to planet
1079 1079
    *
1080 1080
    * @param bool $start
1081
-   * @param bool $only_resources
1082
-   * @param int  $result
1083 1081
    */
1084 1082
   public function resourcesUnload($start = true) {
1085 1083
     sn_db_transaction_check(true);
@@ -1243,6 +1241,9 @@  discard block
 block discarded – undo
1243 1241
   }
1244 1242
 
1245 1243
 
1244
+  /**
1245
+   * @param integer $missionStartTimeStamp
1246
+   */
1246 1247
   protected function renderFleetCoordinates($missionStartTimeStamp = SN_TIME_NOW, $timeMissionJob = 0) {
1247 1248
     $timeToReturn = $this->travelData['duration'] * 2 + $timeMissionJob;
1248 1249
 
Please login to merge, or discard this patch.
includes/includes/flt_flying_fleet_handler2.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
  *
15 15
  * @param Fleet $objFleet
16 16
  * @param bool  $start
17
- * @param null  $result
18 17
  *
19 18
  * @return mixed
20 19
  */
Please login to merge, or discard this patch.
includes/includes/flt_mission_attack.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 
10 10
 /**
11 11
  * @param Mission $objMission
12
- * @param array   $mission_data
13 12
  */
14 13
 function flt_mission_attack($objMission) {
15 14
   $objFleet = $objMission->fleet;
Please login to merge, or discard this patch.