mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-24 14:08:06 +08:00
32 lines
729 B
PHP
32 lines
729 B
PHP
<?php namespace BookStack\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
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()
|
|
{
|
|
//
|
|
}
|
|
}
|