mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
32 lines
646 B
PHP
32 lines
646 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use Illuminate\Support\Facades\Validator;
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Bootstrap any application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
// Add some custom validation rules
|
|
Validator::extend('valid_path', function($attribute, $value, $parameters, $validator) {
|
|
return (is_dir($value) && is_readable($value));
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Register any application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
//
|
|
}
|
|
}
|