PATH:
home
/
lab2454c
/
tripvare.com
/
vendor
/
cloudinary
/
cloudinary_php
/
src
/
Transformation
/
Effect
/
Playback
<?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\Transformation; /** * Class Effect */ abstract class PlaybackEffect { const ACCELERATE = 'accelerate'; const LOOP = 'loop'; const BOOMERANG = 'boomerang'; const PREVIEW = 'preview'; const REVERSE = 'reverse'; const VOLUME = 'volume'; const TRANSITION = 'transition'; use PlaybackEffectTrait; }
[+]
..
[-] PlaybackEffectTrait.php
[edit]
[-] Accelerate.php
[edit]
[-] Preview.php
[edit]
[-] Volume.php
[edit]
[-] Loop.php
[edit]
[-] PlaybackEffect.php
[edit]