/home/techb158/ileadtechnology.com/vendor/smodav/mpesa/src/Mpesa/Laravel/Stores
NameSizeModeActions
LaravelCache.php13790755editdlrm
LaravelConfig.php7450755editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/smodav/mpesa/src/Mpesa/Laravel/Stores/LaravelCache.php (1379B)
repository = $repository; } /** * Get given config value from the configuration store. * * @param string $key * @param null $default * * @return mixed */ public function get($key, $default = null) { return $this->repository->get($key, $default); } /** * Store an item in the cache. * * @param string $key * @param mixed $value * @param \DateTimeInterface|\DateInterval|float|int $seconds */ public function put($key, $value, $seconds = null) { $this->repository->put($key, $value, $seconds); } /** * Get the cache or default value from the store and delete it. * * @param $key * @param $default * * @return mixed */ public function pull($key, $default = null) { return $this->repository->pull($key, $default); } }