Completed
Branch v10.0.8 (8331ba)
by Pierre-Henry
35:33
created
_install/library/Smarty/plugins/function.html_options.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -184,6 +184,10 @@
 block discarded – undo
184 184
     return $_html_result;
185 185
 }
186 186
 
187
+/**
188
+ * @param string|null $id
189
+ * @param integer $idx
190
+ */
187 191
 function smarty_function_html_options_optgroup($key, $values, $selected, $id, $class, &$idx)
188 192
 {
189 193
     $optgroup_html = '<optgroup label="' . smarty_function_escape_special_chars($key) . '">' . "\n";
Please login to merge, or discard this patch.
_install/library/Smarty/plugins/function.html_table.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -164,6 +164,10 @@
 block discarded – undo
164 164
     return $output;
165 165
 }
166 166
 
167
+/**
168
+ * @param string $name
169
+ * @param string $var
170
+ */
167 171
 function smarty_function_html_table_cycle($name, $var, $no)
168 172
 {
169 173
     if (!is_array($var)) {
Please login to merge, or discard this patch.
_protected/app/system/core/models/StatisticCoreModel.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -142,6 +142,9 @@
 block discarded – undo
142 142
         return $this->totalComments('Game', $iDay);
143 143
     }
144 144
 
145
+    /**
146
+     * @param string $sTable
147
+     */
145 148
     protected function totalComments($sTable, $iDay = 0)
146 149
     {
147 150
         CommentCore::checkTable($sTable);
Please login to merge, or discard this patch.
_protected/framework/Analytics/GoogleAnalyticsAPI.class.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -361,7 +361,6 @@
 block discarded – undo
361 361
      * For all the parameters : http://code.google.com/intl/fr-FR/apis/analytics/docs/gdata/gdataReferenceDataFeed.html
362 362
      *
363 363
      * @param string $metrics the metrics
364
-     * @param string $uri the url of the website page (ex : /myurl/)
365 364
      *
366 365
      * @return array
367 366
      */
Please login to merge, or discard this patch.
_protected/framework/Layout/Form/Engine/PFBC/Element.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -198,6 +198,9 @@
 block discarded – undo
198 198
         $this->form = $form;
199 199
     }
200 200
 
201
+    /**
202
+     * @param string $id
203
+     */
201 204
     public function setID($id)
202 205
     {
203 206
         $this->attributes['id'] = $id;
Please login to merge, or discard this patch.
_protected/library/Service/Google/OAuth/auth/Google_P12Signer.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -27,6 +27,10 @@  discard block
 block discarded – undo
27 27
   private $privateKey;
28 28
 
29 29
   // Creates a new signer from a .p12 file.
30
+
31
+  /**
32
+   * @param string $password
33
+   */
30 34
   function __construct($p12, $password) {
31 35
     if (!function_exists('openssl_x509_read')) {
32 36
       throw new Exception(
@@ -57,6 +61,9 @@  discard block
 block discarded – undo
57 61
     }
58 62
   }
59 63
 
64
+  /**
65
+   * @param string $data
66
+   */
60 67
   function sign($data) {
61 68
     if(version_compare(PHP_VERSION, '5.3.0') < 0) {
62 69
       throw new Google_AuthException(
Please login to merge, or discard this patch.
_protected/library/Service/Google/OAuth/auth/Google_PemVerifier.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,8 +51,8 @@
 block discarded – undo
51 51
    * Verifies the signature on data.
52 52
    *
53 53
    * Returns true if the signature is valid, false otherwise.
54
-   * @param $data
55
-   * @param $signature
54
+   * @param string $data
55
+   * @param string $signature
56 56
    * @throws Google_AuthException
57 57
    * @return bool
58 58
    */
Please login to merge, or discard this patch.
_protected/library/Service/Google/OAuth/cache/Google_FileCache.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -37,6 +37,9 @@  discard block
 block discarded – undo
37 37
     return file_exists($storageFile . '.lock');
38 38
   }
39 39
 
40
+  /**
41
+   * @param string $storageFile
42
+   */
40 43
   private function createLock($storageFile) {
41 44
     $storageDir = dirname($storageFile);
42 45
     if (! is_dir($storageDir)) {
@@ -57,6 +60,9 @@  discard block
 block discarded – undo
57 60
     @unlink($storageFile . '.lock');
58 61
   }
59 62
 
63
+  /**
64
+   * @param string $storageFile
65
+   */
60 66
   private function waitForLock($storageFile) {
61 67
     // 20 x 250 = 5 seconds
62 68
     $tries = 20;
@@ -81,6 +87,9 @@  discard block
 block discarded – undo
81 87
     return $this->path . '/' . substr($hash, 0, 2);
82 88
   }
83 89
 
90
+  /**
91
+   * @param string $hash
92
+   */
84 93
   private function getCacheFile($hash) {
85 94
     return $this->getCacheDir($hash) . '/' . $hash;
86 95
   }
Please login to merge, or discard this patch.
library/Service/Google/OAuth/contrib/Google_AdexchangebuyerService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
      * Retrieves the authenticated user's list of accounts. (accounts.list)
94 94
      *
95 95
      * @param array $optParams Optional parameters.
96
-     * @return Google_AccountsList
96
+     * @return Google_Accounts
97 97
      */
98 98
     public function listAccounts($optParams = array()) {
99 99
       $params = array();
Please login to merge, or discard this patch.