Represents the type of file storage.
Source
class MediaOrientationEnum extends AbstractEnum
{
/**
* Square orientation.
*
* @var string
*/
public const SQUARE = 'square';
/**
* Landscape orientation.
*
* @var string
*/
public const LANDSCAPE = 'landscape';
/**
* Portrait orientation.
*
* @var string
*/
public const PORTRAIT = 'portrait';
}
Changelog
| Version | Description |
|---|---|
| 0.1.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.