Skip to content

Instantly share code, notes, and snippets.

@damianoporta
Created March 6, 2015 14:24
Show Gist options
  • Save damianoporta/cdf03a9f4c73c3e52e7c to your computer and use it in GitHub Desktop.
Save damianoporta/cdf03a9f4c73c3e52e7c to your computer and use it in GitHub Desktop.
<?php
protected function moveUploadedFile($file, $destination)
{
if ($this->isUploadedFile($file)) {
return move_uploaded_file($file, $destination);
}
return rename($file, $destination);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment