/
/
home
/
melaqxso
/
nymetrocualumni.com
/
wp-content
/
plugins
/
give
/
src
/
Helpers
Server: server63.web-hosting.com (198.54.116.184)
You: 216.73.216.61
PHP 7.4.33
Dir:
/home/melaqxso/nymetrocualumni.com/wp-content/plugins/give/src/Helpers
Edit:
/home/melaqxso/nymetrocualumni.com/wp-content/plugins/give/src/Helpers/Call.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); } }
Ukuran: 726 B