Skip to content

Instantly share code, notes, and snippets.

@rossriley
Created June 24, 2016 14:50
Show Gist options
  • Save rossriley/5313bfaac3d7039f4f87cd238892943f to your computer and use it in GitHub Desktop.
Save rossriley/5313bfaac3d7039f4f87cd238892943f to your computer and use it in GitHub Desktop.
<?php
// This line needs to be called after initialize but before run
$app['upload'] = $app->extend(
'upload',
function ($handler, $app) {
$handler->setSanitizerCallback(function ($filename) {
return $filename;
});
return $handler;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment