# give/4.16.9/src/Onboarding/Setup/Handlers/RequestHandler.php

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

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/Onboarding/Setup/Handlers/RequestHandler.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/Onboarding/Setup/Handlers/RequestHandler.php
- Modified: 2021-11-23T23:55:18+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/Onboarding/Setup/Handlers/RequestHandler.php#L10-L20`.

```php
<?php

namespace Give\Onboarding\Setup\Handlers;

defined('ABSPATH') || exit;

interface RequestHandler
{

    /**
     * Determines if a request should be handled and then handles it.
     *
     * @since 2.8.0
     *
     * @return null
     */
    public function maybeHandle();

    /**
     * Handles a request.
     *
     * @since 2.8.0
     *
     * @return null
     */
    public function handle();
}

```
