OwlCyberSecurity - MANAGER
Edit File: Factory.php
<?php namespace Give\Framework\FieldsAPI; use Give\Framework\FieldsAPI\Contracts\Node; use Give\Framework\FieldsAPI\Exceptions\TypeNotSupported; /** * @since 2.12.0 */ class Factory { /** * @since 2.12.0 * * @param string $type * @param ...$args * * @return Node * @throws TypeNotSupported */ public function make($type, ...$args) { $class = 'Give\\Framework\\FieldsAPI\\' . ucfirst($type); if ( ! class_exists($class)) { throw new TypeNotSupported($type); } return new $class(...$args); } }