# give/4.16.9/src/Framework/DesignSystem/DesignSystemServiceProvider.php

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

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/Framework/DesignSystem/DesignSystemServiceProvider.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/Framework/DesignSystem/DesignSystemServiceProvider.php
- Modified: 2023-04-06T20:38:38+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/DesignSystem/DesignSystemServiceProvider.php#L10-L20`.

```php
<?php

namespace Give\Framework\DesignSystem;

use Give\Framework\DesignSystem\Actions\RegisterDesignSystemStyles;
use Give\Helpers\Hooks;
use Give\ServiceProviders\ServiceProvider;

class DesignSystemServiceProvider implements ServiceProvider
{
    /**
     * @since 2.26.0
     */
    public function register()
    {
    }

    /**
     * @since 2.26.0
     */
    public function boot()
    {
        Hooks::addAction('wp_enqueue_scripts', RegisterDesignSystemStyles::class);
        Hooks::addAction('admin_enqueue_scripts', RegisterDesignSystemStyles::class);
    }
}

```
