Completed
Branch master (452dd2)
by Pierre-Henry
61:36 queued 26:09
created
_protected/framework/Video/Api/Api.class.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
 
66 66
     /**
67 67
      * @param string $sUrl
68
-     * @return mixed (string | boolean) The embed URL if id is valid, false otherwise.
68
+     * @return false|string (string | boolean) The embed URL if id is valid, false otherwise.
69 69
      */
70 70
     public function getEmbedUrl($sUrl)
71 71
     {
Please login to merge, or discard this patch.
Unused Use Statements   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -13,10 +13,9 @@
 block discarded – undo
13 13
 namespace PH7\Framework\Video\Api;
14 14
 defined('PH7') or exit('Restricted access');
15 15
 
16
-use
17
-PH7\Framework\File\File,
18
-PH7\Framework\Str\Str,
19
-PH7\Framework\Mvc\Model\DbConfig;
16
+use PH7\Framework\File\File;
17
+use PH7\Framework\Str\Str;
18
+use PH7\Framework\Mvc\Model\DbConfig;
20 19
 
21 20
 abstract class Api
22 21
 {
Please login to merge, or discard this patch.
_protected/framework/Video/Api/Dailymotion.class.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
 
23 23
     /**
24 24
      * @param string $sUrl
25
-     * @return mixed (string | boolean) Returns the video embed URL if it was found, FALSE otherwise.
25
+     * @return false|string (string | boolean) Returns the video embed URL if it was found, FALSE otherwise.
26 26
      */
27 27
     public function getVideo($sUrl)
28 28
     {
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 
56 56
     /**
57 57
      * @param string $sUrl
58
-     * @return mixed (integer | boolean) Returns the ID of the video if it was found, FALSE otherwise.
58
+     * @return string|false (integer | boolean) Returns the ID of the video if it was found, FALSE otherwise.
59 59
      */
60 60
     public function getVideoId($sUrl)
61 61
     {
Please login to merge, or discard this patch.
_protected/framework/Video/Api/Vimeo.class.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
 
23 23
     /**
24 24
      * @param string $sUrl
25
-     * @return mixed (string | boolean) Returns the video embed URL if it was found and is valid, FALSE otherwise.
25
+     * @return false|string (string | boolean) Returns the video embed URL if it was found and is valid, FALSE otherwise.
26 26
      */
27 27
     public function getVideo($sUrl)
28 28
     {
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 
65 65
     /**
66 66
      * @param string $sUrl
67
-     * @return mixed (integer | boolean) Returns the ID of the video if it was found, FALSE otherwise.
67
+     * @return string|false (integer | boolean) Returns the ID of the video if it was found, FALSE otherwise.
68 68
      */
69 69
     public function getVideoId($sUrl)
70 70
     {
Please login to merge, or discard this patch.
_protected/framework/Video/Video.class.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -113,6 +113,7 @@  discard block
 block discarded – undo
113 113
      * Convert video file and the extension video type.
114 114
      *
115 115
      * @param string $sFile.
116
+     * @param string $sFile
116 117
      * @return string The new name that you entered in the parameter of this method.
117 118
      */
118 119
     public function rename($sFile)
@@ -135,6 +136,10 @@  discard block
 block discarded – undo
135 136
      * @param integer $iHeight
136 137
      * @return string The thumbnail file that you entered in the parameter of this method.
137 138
      */
139
+
140
+    /**
141
+     * @param integer $iSeconds
142
+     */
138 143
     public function thumbnail($sPicturePath, $iSeconds, $iWidth, $iHeight)
139 144
     {
140 145
         exec($this->sFfmpegPath . ' -itsoffset -' . $iSeconds . ' -i ' . $this->aFile['tmp_name'] . '  -vcodec mjpeg -vframes 1 -an -f rawvideo -s ' . $iWidth . 'x' . $iHeight . ' ' . $sPicturePath);
Please login to merge, or discard this patch.
_protected/framework/Xml/Feed/Rss.class.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
      *
60 60
      * @access public
61 61
      * @param array $aItems
62
-     * @return object this
62
+     * @return Rss this
63 63
      */
64 64
     public function addItem($aItems)
65 65
     {
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.