# give/4.16.9/src/ThirdPartyCompatibility/ServiceProvider.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.9. 24 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/ThirdPartyCompatibility/ServiceProvider.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/ThirdPartyCompatibility/ServiceProvider.php
- Modified: 2025-07-09T13:09:56+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.16.9/code/src/ThirdPartyCompatibility/ServiceProvider.php#L10-L20`.

```php
<?php


namespace Give\ThirdPartyCompatibility;

use Give\Helpers\Hooks;
use Give\ServiceProviders\ServiceProvider as CoreServiceProvider;
use Give\ThirdPartyCompatibility\Divi\DeregisterEntityScripts;

/**
 * @since 4.5.0
 */
class ServiceProvider implements CoreServiceProvider
{
    public function register()
    {
        Hooks::addAction('wp_print_scripts', DeregisterEntityScripts::class);
    }

    public function boot()
    {
    }
}

```
