Spade

Mini Shell

Directory:~$ /home/lmsyaran/public_html/j3/libraries/vendor_jcb/VDM.Joomla.FOF/src/Utils/
Upload File

[Home] [System Details] [Kill Me]
Current File:~$ /home/lmsyaran/public_html/j3/libraries/vendor_jcb/VDM.Joomla.FOF/src/Utils/Phpfunc.php

<?php
/**
 * @package       FrameworkOnFramework
 * @subpackage    Utilities
 * @copyright     Copyright (C) 2010-2016 Nicholas K. Dionysopoulos /
Akeeba Ltd. All rights reserved.
 * @license       GNU General Public License version 2 or later; see
LICENSE.txt
 * @note	      This file has been modified by the Joomla! Project (and VDM)
and no longer reflects the original work of its author.
 * @depreciation  This was ported for the sake of those who have stuff
encrypted with the FOF encryption suite.
 */
namespace VDM\Joomla\FOF\Utils;


/**
 * Intercept calls to PHP functions.
 * 
 * @method  function_exists(string $function)
 * @method  mcrypt_list_algorithms()
 * @method  hash_algos()
 * @method  extension_loaded(string $ext)
 * @method  mcrypt_create_iv(int $bytes, int $source)
 * @method  openssl_get_cipher_methods()
 * 
 * @package  FrameworkOnFramework
 * @since    1.0
 */
class Phpfunc
{
	/**
	 *
	 * Magic call to intercept any function pass to it.
	 *
	 * @param string $func The function to call.
	 *
	 * @param array  $args Arguments passed to the function.
	 *
	 * @return mixed The result of the function call.
	 *
	 */
	public function __call($func, $args)
	{
		return call_user_func_array($func, $args);
	}
}