Represents the type of file storage.
Source
class FileTypeEnum extends AbstractEnum
{
/**
* Inline file with base64-encoded data.
*
* @var string
*/
public const INLINE = 'inline';
/**
* Remote file referenced by URL.
*
* @var string
*/
public const REMOTE = 'remote';
}
Changelog
| Version | Description |
|---|---|
| 0.1.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.