mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-25 14:37:59 +01:00
Added a Laravel IDE helper and type-hinted the cover art upload method.
This commit is contained in:
parent
7daecbdd30
commit
d86028310e
3 changed files with 6 additions and 5 deletions
|
@ -117,7 +117,7 @@ return array(
|
|||
'Illuminate\Workbench\WorkbenchServiceProvider',
|
||||
|
||||
'Intouch\LaravelNewrelic\LaravelNewrelicServiceProvider',
|
||||
|
||||
'Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider',
|
||||
),
|
||||
|
||||
/*
|
||||
|
@ -184,7 +184,6 @@ return array(
|
|||
'View' => 'Illuminate\Support\Facades\View',
|
||||
|
||||
'Newrelic' => 'Intouch\LaravelNewrelic\Facades\Newrelic',
|
||||
|
||||
),
|
||||
|
||||
);
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
use External;
|
||||
use Illuminate\Support\Facades\Config;
|
||||
use Illuminate\Support\Facades\URL;
|
||||
use Symfony\Component\HttpFoundation\File\UploadedFile;
|
||||
|
||||
class Image extends \Eloquent {
|
||||
const NORMAL = 1;
|
||||
|
@ -30,7 +31,7 @@
|
|||
return null;
|
||||
}
|
||||
|
||||
public static function upload($file, $user) {
|
||||
public static function upload(UploadedFile $file, $user) {
|
||||
$userId = $user;
|
||||
if ($user instanceof User)
|
||||
$userId = $user->id;
|
||||
|
@ -97,4 +98,4 @@
|
|||
if (!is_dir($destination))
|
||||
mkdir($destination, 777, true);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -4,7 +4,8 @@
|
|||
"kriswallsmith/assetic": "1.2.*@dev",
|
||||
"codescale/ffmpeg-php": "2.7.0",
|
||||
"simplepie/simplepie": "1.3.1",
|
||||
"intouch/laravel-newrelic": "*"
|
||||
"intouch/laravel-newrelic": "*",
|
||||
"barryvdh/laravel-ide-helper": "~1.11"
|
||||
},
|
||||
"autoload": {
|
||||
"classmap": [
|
||||
|
|
Loading…
Reference in a new issue