uawdijnntqw1x1x1
IP : 216.73.216.219
Hostname : webm015.cluster127.gra.hosting.ovh.net
Kernel : Linux webm015.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
pteabiscqq
/
.
/
www
/
libraries
/
quix
/
src
/
Assets
/
AssetsManager.php
/
/
<?php namespace ThemeXpert\Assets; class AssetsManager { /** * Driver name. * * @var string */ protected $driver; /** * Driver instance. * * @var object */ protected $driverInstance; /** * Create a new instance of assets driver. */ public function __construct() { $this->driver = ASSETS_DRIVER; } /** * Get assets driver name. * * @return string */ public function getDriverName() { return $this->driver; } /** * Get driver instance. * * @return object */ protected function getDriverInstance() { if(is_null($this->driverInstance)) { $driver = "ThemeXpert\\Assets\\Drivers\\{$this->driver}"; $this->driverInstance = new $driver; } return $this->driverInstance; } /** * Dynamically calling drivers method. * * @param $method * @param $arguments * * @return mixed */ public function __call($method, $arguments) { $instance = $this->getDriverInstance(); return call_user_func_array([$instance, $method], $arguments); } }
/home/pteabiscqq/./www/libraries/quix/src/Assets/AssetsManager.php