Elgg\Assets\ExternalFiles::__construct PHP Method

__construct() public method

Constructor
public __construct ( stdClass $config = null )
$config stdClass Predefined configuration in format used by global $CONFIG variable
    public function __construct(\stdClass $config = null)
    {
        if (!$config instanceof \stdClass) {
            $config = new \stdClass();
        }
        $this->CONFIG = $config;
    }