Automattic\WooCommerce\Vendor\League\Container

ReflectionContainer::has()publicWC 1.0

{@inheritdoc}

Method of the class: ReflectionContainer{}

No Hooks.

Return

null. Nothing (null).

Usage

$ReflectionContainer = new ReflectionContainer();
$ReflectionContainer->has( $id ) : bool;
$id (required)
-

ReflectionContainer::has() code WC 8.7.0

public function has($id) : bool
{
    return class_exists($id);
}