PHP code example of oanhnn / laravel-webhook-shield
1. Go to this page and download the library: Download oanhnn/laravel-webhook-shield library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
namespace App\Services;
use Laravel\WebhookShield\Contracts\Service;
class CustomService implements Service
{
// ...
}
namespace App\Providers;
use App\Services\CustomService;
use Illuminate\Support\ServiceProvider;
use Laravel\WebhookShield\Facades\Shield;
class AppServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
Shield::extend('custom-driver', function ($app, $config) {
return new CustomService($config);
});
// ...
}
/**
* Register any application services.
*
* @return void
*/
public function register()
{
// ...
}
}