/
home
/
techb158
/
ileadtechnology.com
/
vendor
/
smodav
/
mpesa
/
src
/
Mpesa
/
Contracts
/
/home/techb158/ileadtechnology.com/vendor/smodav/mpesa/src/Mpesa/Contracts
mkdir
upload
Name
Size
Mode
Actions
CacheStore.php
910
0755
edit
dl
rm
ConfigurationStore.php
416
0755
edit
dl
rm
Edit:
/home/techb158/ileadtechnology.com/vendor/smodav/mpesa/src/Mpesa/Contracts/CacheStore.php
(910B)
<?php namespace SmoDav\Mpesa\Contracts; /** * Interface CacheStore * * @category PHP * * @author David Mjomba <smodavprivate@gmail.com> */ interface CacheStore { /** * Get the cache value from the store or a default value to be supplied. * * @param $key * @param $default * * @return mixed */ public function get($key, $default = null); /** * 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); /** * Get the cache or default value from the store and delete it. * * @param $key * @param $default * * @return mixed */ public function pull($key, $default = null); }
Save
cmd:
run