mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
dabf149411
Supports #115
32 lines
742 B
PHP
32 lines
742 B
PHP
<?php namespace BookStack\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Validator;
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Bootstrap any application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
// Custom validation methods
|
|
Validator::extend('is_image', function($attribute, $value, $parameters, $validator) {
|
|
$imageMimes = ['image/png', 'image/bmp', 'image/gif', 'image/jpeg', 'image/jpg', 'image/tiff', 'image/webp'];
|
|
return in_array($value->getMimeType(), $imageMimes);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Register any application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
//
|
|
}
|
|
}
|