mautic / app /bundles /CoreBundle /Helper /ParamsLoaderHelper.php
chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
raw
history blame contribute delete
442 Bytes
<?php
namespace Mautic\CoreBundle\Helper;
use Mautic\Middleware\ConfigAwareTrait;
class ParamsLoaderHelper
{
use ConfigAwareTrait;
private $parameters = [];
/**
* Get parameters for static method.
*
* @return array
*/
public function getParameters()
{
if (empty($this->parameters)) {
$this->parameters = $this->getConfig();
}
return $this->parameters;
}
}