Definition at line 35 of file Cache.php.
◆ deleteSmd()
static deleteSmd |
( |
|
$filename | ) |
|
|
static |
Delete a file containing a cached SMD
- Parameters
-
- Returns
- bool
Definition at line 93 of file Cache.php.
95 if (is_string($filename) && file_exists($filename)) {
◆ getSmd()
static getSmd |
( |
|
$filename | ) |
|
|
static |
Retrieve a cached SMD
On success, returns the cached SMD (a JSON string); an failure, returns boolean false.
- Parameters
-
- Returns
- string|false
Definition at line 70 of file Cache.php.
72 if (!is_string($filename)
73 || !file_exists($filename)
◆ saveSmd()
Cache a service map description (SMD) to a file
Returns true on success, false on failure
- Parameters
-
- Returns
- boolean
Definition at line 46 of file Cache.php.
48 if (!is_string($filename)
49 || (!file_exists($filename) && !
is_writable(dirname($filename))))
The documentation for this class was generated from the following file:
- vendor/magento/zendframework1/library/Zend/Json/Server/Cache.php