20 lines
365 B
PHP
20 lines
365 B
PHP
|
<?php
|
||
|
/*
|
||
|
SPDX-License-Identifier: AGPL
|
||
|
SPDX-FileCopyrightText: © 2024 Millions Missing FRANCE <info@millionsmissing.fr>
|
||
|
*/
|
||
|
|
||
|
namespace MMF\FreescoutRestrictedCustomers;
|
||
|
|
||
|
use Illuminate\Support\ServiceProvider;
|
||
|
|
||
|
class FreescoutRestrictedCustomersServiceProvider extends ServiceProvider {
|
||
|
public function register() {
|
||
|
//
|
||
|
}
|
||
|
|
||
|
public function boot() {
|
||
|
//
|
||
|
}
|
||
|
}
|