We should never be going over 120 line length

This commit is contained in:
James Brooks
2015-01-14 16:14:53 +00:00
parent 6cca7826be
commit e247a47795

View File

@@ -128,7 +128,9 @@ class DashSettingsController extends Controller
$maxSize = $file->getMaxFilesize();
if ($file->getSize() > $maxSize) {
return Redirect::back()->withErrors(trans('dashboard.settings.app-setup.too-big', ['size' => $maxSize]));
return Redirect::back()->withErrors(trans('dashboard.settings.app-setup.too-big', [
'size' => $maxSize,
]));
}
if (!$file->isValid() || $file->getError()) {