# give/4.16.9/src/Framework/WordPressShims/ServiceProvider.php

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

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/Framework/WordPressShims/ServiceProvider.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/Framework/WordPressShims/ServiceProvider.php
- Modified: 2022-05-11T23:49:06+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/Framework/WordPressShims/ServiceProvider.php#L10-L20`.

```php
<?php

declare(strict_types=1);

namespace Give\Framework\WordPressShims;

use Give\ServiceProviders\ServiceProvider as BaseServiceProvider;

class ServiceProvider implements BaseServiceProvider
{
    /**
     * Autoload all the shim files in the same directory as this file.
     *
     * @since 2.20.0
     *
     * @inheritDoc
     */
    public function register()
    {
        $files = glob(__DIR__ . '/*.php');
        foreach ($files as $file) {
            require_once $file;
        }
    }

    /**
     * @inheritDoc
     */
    public function boot()
    {
    }
}

```
