cloudformation-plus-plus: cfn template preprocessor
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
359 B

3 years ago
<?php
3 years ago
declare(strict_types=1);
3 years ago
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
3 years ago
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
}
3 years ago
3 years ago
/**
* Register any application services.
*
* @return void
*/
public function register()
{
}
3 years ago
}