Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php /** * This file is part of the Cloudinary PHP package. * * (c) Cloudinary * * F..
Decoded Output download
<?php
/**
* This file is part of the Cloudinary PHP package.
*
* (c) Cloudinary
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Cloudinary\Test\Unit\Tag;
use Cloudinary\Asset\Video;
use Cloudinary\Tag\VideoThumbnailTag;
use Cloudinary\Transformation\Effect;
use Cloudinary\Transformation\VideoEdit;
/**
* Class VideoThumbnailTagTest
*/
final class VideoThumbnailTagTest extends ImageTagTestCase
{
const TAG_END = self::ASSET_ID . '.jpg">';
public function testSimpleVideoThumbnailTag()
{
$tag = new VideoThumbnailTag(self::VIDEO_NAME);
self::assertEquals(
'<img src="https://res.cloudinary.com/test123/video/upload/' . self::TAG_END,
(string)$tag
);
}
public function testVideoThumbnailTagWithTransformation()
{
$video = (new Video(self::VIDEO_NAME))->trim(VideoEdit::trim(10, 20));
$tag = (new VideoThumbnailTag($video))->effect(Effect::sepia(20));
self::assertEquals(
'<img src="https://res.cloudinary.com/test123/video/upload/eo_20,so_10/e_sepia:20/' . self::TAG_END,
(string)$tag
);
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* This file is part of the Cloudinary PHP package.
*
* (c) Cloudinary
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Cloudinary\Test\Unit\Tag;
use Cloudinary\Asset\Video;
use Cloudinary\Tag\VideoThumbnailTag;
use Cloudinary\Transformation\Effect;
use Cloudinary\Transformation\VideoEdit;
/**
* Class VideoThumbnailTagTest
*/
final class VideoThumbnailTagTest extends ImageTagTestCase
{
const TAG_END = self::ASSET_ID . '.jpg">';
public function testSimpleVideoThumbnailTag()
{
$tag = new VideoThumbnailTag(self::VIDEO_NAME);
self::assertEquals(
'<img src="https://res.cloudinary.com/test123/video/upload/' . self::TAG_END,
(string)$tag
);
}
public function testVideoThumbnailTagWithTransformation()
{
$video = (new Video(self::VIDEO_NAME))->trim(VideoEdit::trim(10, 20));
$tag = (new VideoThumbnailTag($video))->effect(Effect::sepia(20));
self::assertEquals(
'<img src="https://res.cloudinary.com/test123/video/upload/eo_20,so_10/e_sepia:20/' . self::TAG_END,
(string)$tag
);
}
}
Function Calls
| None |
Stats
| MD5 | 5ae8432a364aa40bc69a58119b567818 |
| Eval Count | 0 |
| Decode Time | 97 ms |