# give/4.16.8.1/src/Framework/Database/ServiceProvider.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.8.1. 28 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.8.1/code/src/Framework/Database/ServiceProvider.php
- Raw: https://pluginprobe.com/plugins/give/4.16.8.1/raw/src/Framework/Database/ServiceProvider.php
- Modified: 2022-08-18T18:28:20+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.8.1/code/src/Framework/Database/ServiceProvider.php#L10-L20`.

```php
<?php

declare(strict_types=1);

namespace Give\Framework\Database;

use Give\Framework\Database\Actions\EnableBigSqlSelects;
use Give\Helpers\Hooks;
use Give\ServiceProviders\ServiceProvider as ServiceProviderContract;

class ServiceProvider implements ServiceProviderContract
{
    /**
     * @inheritDoc
     */
    public function register()
    {
    }

    /**
     * @inheritDoc
     */
    public function boot()
    {
        Hooks::addAction('givewp_db_pre_query', EnableBigSqlSelects::class);
    }
}

```
