mirror of
https://github.com/axeloz/filesharing.git
synced 2025-05-06 18:13:55 +02:00
28 lines
450 B
PHP
28 lines
450 B
PHP
<?php
|
|
|
|
namespace app\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class UploadServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Bootstrap the application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Register the application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
require_once app_path().'/Helpers/Upload.php';
|
|
}
|
|
}
|