Completed
Push — master ( 0a2d54...99fa2d )
by
unknown
02:12
created
src/Syntax/SteamApi/Steam/User.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
     /**
24 24
      * Get the user_ids for a display name.
25 25
      *
26
-     * @param null $displayName Custom name from steam profile link.
26
+     * @param string $displayName Custom name from steam profile link.
27 27
      *
28 28
      * @return mixed
29 29
      *
@@ -105,6 +105,9 @@  discard block
 block discarded – undo
105 105
         return $result;
106 106
     }
107 107
 
108
+    /**
109
+     * @param integer $steamId
110
+     */
108 111
     public function GetPlayerBans($steamId = null)
109 112
     {
110 113
         // Set up the api details
Please login to merge, or discard this patch.
src/Syntax/SteamApi/Steam/User/Stats.php 1 patch
Doc Comments   +7 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,6 +51,9 @@  discard block
 block discarded – undo
51 51
         return $achievements;
52 52
     }
53 53
 
54
+    /**
55
+     * @param integer $appId
56
+     */
54 57
     public function GetPlayerAchievements($appId)
55 58
     {
56 59
         // Set up the api details
@@ -93,6 +96,9 @@  discard block
 block discarded – undo
93 96
         }
94 97
     }
95 98
 
99
+    /**
100
+     * @param integer $gameId
101
+     */
96 102
     public function GetGlobalAchievementPercentagesForApp($gameId)
97 103
     {
98 104
         // Set up the api details
@@ -112,7 +118,7 @@  discard block
 block discarded – undo
112 118
     }
113 119
 
114 120
     /**
115
-     * @param $appId int Steam 64 id
121
+     * @param integer $appId int Steam 64 id
116 122
      * @param $all   bool Return all stats when true and only achievements when false
117 123
      *
118 124
      * @return mixed
Please login to merge, or discard this patch.
tests/BaseTester.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -35,6 +35,9 @@  discard block
 block discarded – undo
35 35
         $this->assertTrue(true);
36 36
     }
37 37
 
38
+    /**
39
+     * @param string[] $attributes
40
+     */
38 41
     protected function assertObjectHasAttributes($attributes, $object)
39 42
     {
40 43
         foreach ($attributes as $attribute) {
@@ -95,6 +98,9 @@  discard block
 block discarded – undo
95 98
         $this->checkNestedPackageProperties($package);
96 99
     }
97 100
 
101
+    /**
102
+     * @param Syntax\SteamApi\Containers\Group $group
103
+     */
98 104
     protected function checkGroupProperties($group)
99 105
     {
100 106
         $this->checkGroupMainSummaryProperties($group);
Please login to merge, or discard this patch.
tests/GroupTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     }
23 23
 
24 24
     /**
25
-     * @param $group
25
+     * @param Syntax\SteamApi\Containers\Group $group
26 26
      */
27 27
     protected function checkClasses($group)
28 28
     {
Please login to merge, or discard this patch.
src/Syntax/SteamApi/Client.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -132,6 +132,9 @@  discard block
 block discarded – undo
132 132
         return $response->body;
133 133
     }
134 134
 
135
+    /**
136
+     * @return \SimpleXMLElement
137
+     */
135 138
     protected function setUpXml(array $arguments = [])
136 139
     {
137 140
         $steamUrl = $this->buildUrl();
@@ -234,7 +237,7 @@  discard block
 block discarded – undo
234 237
     }
235 238
 
236 239
     /**
237
-     * @param Collection $objects
240
+     * @param \Illuminate\Support\Collection $objects
238 241
      *
239 242
      * @return $this
240 243
      */
Please login to merge, or discard this patch.