Completed
Branch master (57084d)
by Pierre-Henry
35:51
created
_protected/framework/Video/Api/Api.class.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
     /**
80 80
      * @param string $sUrl
81 81
      *
82
-     * @return string|boolean The embed URL if id is valid, false otherwise.
82
+     * @return false|string The embed URL if id is valid, false otherwise.
83 83
      */
84 84
     public function getEmbedUrl($sUrl)
85 85
     {
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
      * @param string $sUrl
24 24
      *
25
-     * @return string|boolean Returns the video embed URL if it was found, FALSE otherwise.
25
+     * @return false|string Returns the video embed URL if it was found, FALSE otherwise.
26 26
      */
27 27
     public function getVideo($sUrl)
28 28
     {
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
     /**
62 62
      * @param string $sUrl
63 63
      *
64
-     * @return integer|boolean Returns the ID of the video if it was found, FALSE otherwise.
64
+     * @return string|false Returns the ID of the video if it was found, FALSE otherwise.
65 65
      */
66 66
     public function getVideoId($sUrl)
67 67
     {
Please login to merge, or discard this patch.
_protected/framework/Video/Api/Metacafe.class.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     /**
23 23
      * @param string $sUrl
24 24
      *
25
-     * @return string|boolean Returns the embed video URL if found, FALSE otherwise.
25
+     * @return false|string Returns the embed video URL if found, FALSE otherwise.
26 26
      */
27 27
     public function getVideo($sUrl)
28 28
     {
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
     /**
127 127
      * @param string $sUrl
128 128
      *
129
-     * @return integer|boolean Returns the ID of the video if it was found, FALSE otherwise.
129
+     * @return string|false Returns the ID of the video if it was found, FALSE otherwise.
130 130
      */
131 131
     public function getVideoId($sUrl)
132 132
     {
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
      *
140 140
      * @param string $sUrl
141 141
      *
142
-     * @return boolean|string
142
+     * @return false|string
143 143
      */
144 144
     public function getEmbedUrl($sUrl)
145 145
     {
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
      * @param string $sUrl
24 24
      *
25
-     * @return string|boolean Returns the video embed URL if it was found and is valid, FALSE otherwise.
25
+     * @return false|string Returns the video embed URL if it was found and is valid, FALSE otherwise.
26 26
      */
27 27
     public function getVideo($sUrl)
28 28
     {
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     /**
71 71
      * @param string $sUrl
72 72
      *
73
-     * @return integer|boolean Returns the ID of the video if it was found, FALSE otherwise.
73
+     * @return string|false Returns the ID of the video if it was found, FALSE otherwise.
74 74
      */
75 75
     public function getVideoId($sUrl)
76 76
     {
Please login to merge, or discard this patch.
_protected/framework/Video/Api/Youtube.class.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
     /**
27 27
      * @param string $sUrl
28 28
      *
29
-     * @return string|boolean Returns the embed video URL if found, FALSE otherwise.
29
+     * @return false|string Returns the embed video URL if found, FALSE otherwise.
30 30
      */
31 31
     public function getVideo($sUrl)
32 32
     {
Please login to merge, or discard this patch.
_protected/framework/Video/Video.class.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -106,6 +106,7 @@  discard block
 block discarded – undo
106 106
      * Convert video file and the extension video type.
107 107
      *
108 108
      * @param string $sFile.
109
+     * @param string $sFile
109 110
      *
110 111
      * @return string The new name that you entered in the parameter of this method.
111 112
      */
@@ -127,6 +128,7 @@  discard block
 block discarded – undo
127 128
      * @param string $sPicturePath
128 129
      * @param integer $iWidth
129 130
      * @param integer $iHeight
131
+     * @param integer $iSeconds
130 132
      *
131 133
      * @return string The thumbnail file that you entered in the parameter of this method.
132 134
      */
Please login to merge, or discard this patch.