mirror of
https://github.com/koel/koel
synced 2024-11-24 13:13:05 +00:00
33 lines
646 B
PHP
33 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()
|
||
|
{
|
||
|
//
|
||
|
}
|
||
|
}
|