Skip to content

Instantly share code, notes, and snippets.

@WyriHaximus
Created November 22, 2017 07:04
Show Gist options
  • Save WyriHaximus/407dbc187b1edc1913759dad3c32c84c to your computer and use it in GitHub Desktop.
Save WyriHaximus/407dbc187b1edc1913759dad3c32c84c to your computer and use it in GitHub Desktop.
if (!isset($uploadedFile) && $bodyLength > ini_get('upload_max_filesize')) {
$uploadedFile = new UploadedFile(
Psr7\stream_for(''),
0,
UPLOAD_ERR_INI_SIZE,
$this->getFieldFromHeader($headers['content-disposition'], 'filename'),
$headers['content-type'][0]
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment