# give/4.16.9/src/Helpers/Call.php

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

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/Helpers/Call.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/Helpers/Call.php
- Modified: 2022-11-17T22:53:34+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/Helpers/Call.php#L10-L20`.

```php
<?php

namespace Give\Helpers;

use Give\Framework\Exceptions\Primitives\InvalidArgumentException;

class Call
{
    /**
     * Call an invokable class.
     *
     * @since 2.17.0
     *
     * @param mixed $args
     *
     * @return mixed
     *
     * @deprecated 2.23.0 Instantiate and invoke the class directly or use the (new Class())() syntax. This gives better tracking in the IDE.
     */
    public static function invoke(string $class, ...$args)
    {
        if (!method_exists($class, '__invoke')) {
            throw new InvalidArgumentException("{$class} class is not invokable");
        }

        /** @var callable $instance */
        $instance = give($class);

        return $instance(...$args);
    }
}

```
