Completed
Push — master ( 51f5d4...a2914f )
by Donata
03:45 queued 01:59
created
code/blocks/slider/models/VideoSliderItem.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -299,7 +299,7 @@
 block discarded – undo
299 299
      * Fetching/downloading picture from the providers url address and
300 300
      * saving as Image object.
301 301
      *
302
-     * @return false
302
+     * @return false|null
303 303
      */
304 304
     public function fetchVideosPicture() {
305 305
         try {
Please login to merge, or discard this patch.
code/blocks/video/models/VideoBlock.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -277,7 +277,7 @@  discard block
 block discarded – undo
277 277
     }
278 278
 
279 279
     /**
280
-     * @return bool|string
280
+     * @return false|string
281 281
      */
282 282
     public function getMp4VideoUrl() {
283 283
         $file = $this->Mp4();
@@ -290,7 +290,7 @@  discard block
 block discarded – undo
290 290
     }
291 291
 
292 292
     /**
293
-     * @return bool|string
293
+     * @return false|string
294 294
      */
295 295
     public function getWebMVideoUrl() {
296 296
         $file = $this->WebM();
@@ -303,7 +303,7 @@  discard block
 block discarded – undo
303 303
     }
304 304
 
305 305
     /**
306
-     * @return bool|string
306
+     * @return false|string
307 307
      */
308 308
     public function getOggVideoUrl() {
309 309
         $file = $this->Ogg();
@@ -319,7 +319,7 @@  discard block
 block discarded – undo
319 319
      * Fetching/downloading picture from the providers url address and
320 320
      * saving as Image object.
321 321
      *
322
-     * @return false
322
+     * @return false|null
323 323
      */
324 324
     public function fetchVideosPicture() {
325 325
         try {
Please login to merge, or discard this patch.