18 lines
		
	
	
		
			379 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			379 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						||
 | 
						||
namespace App\Providers;
 | 
						||
 | 
						||
use Illuminate\Support\ServiceProvider;
 | 
						||
use Illuminate\Support\Facades\Schema;   // only if you use Schema in boot()
 | 
						||
 | 
						||
class DavServiceProvider extends ServiceProvider
 | 
						||
{
 | 
						||
    /**
 | 
						||
     * Bootstrap any application services.
 | 
						||
     */
 | 
						||
    public function boot(): void
 | 
						||
    {
 | 
						||
        // Optional: publish Sabre’s SQL or do other setup work here
 | 
						||
    }
 | 
						||
}
 |