Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bareos/bareos-webui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/zendframework/zend-json/src/Server/Cache.php')
-rw-r--r--vendor/zendframework/zend-json/src/Server/Cache.php87
1 files changed, 0 insertions, 87 deletions
diff --git a/vendor/zendframework/zend-json/src/Server/Cache.php b/vendor/zendframework/zend-json/src/Server/Cache.php
deleted file mode 100644
index 7f86331..0000000
--- a/vendor/zendframework/zend-json/src/Server/Cache.php
+++ /dev/null
@@ -1,87 +0,0 @@
-<?php
-/**
- * Zend Framework (http://framework.zend.com/)
- *
- * @link http://github.com/zendframework/zf2 for the canonical source repository
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
-
-namespace Zend\Json\Server;
-
-use Zend\Server\Cache as ServerCache;
-use Zend\Stdlib\ErrorHandler;
-
-/**
- * Zend\Json\Server\Cache: cache Zend\Json\Server\Server server definition and SMD
- */
-class Cache extends ServerCache
-{
- /**
- * Cache a service map description (SMD) to a file
- *
- * Returns true on success, false on failure
- *
- * @param string $filename
- * @param \Zend\Json\Server\Server $server
- * @return bool
- */
- public static function saveSmd($filename, Server $server)
- {
- if (!is_string($filename) || (!file_exists($filename) && !is_writable(dirname($filename)))) {
- return false;
- }
-
- ErrorHandler::start();
- $test = file_put_contents($filename, $server->getServiceMap()->toJson());
- ErrorHandler::stop();
-
- if (0 === $test) {
- return false;
- }
-
- return true;
- }
-
- /**
- * Retrieve a cached SMD
- *
- * On success, returns the cached SMD (a JSON string); a failure, returns
- * boolean false.
- *
- * @param string $filename
- * @return string|false
- */
- public static function getSmd($filename)
- {
- if (!is_string($filename) || !file_exists($filename) || !is_readable($filename)) {
- return false;
- }
-
- ErrorHandler::start();
- $smd = file_get_contents($filename);
- ErrorHandler::stop();
-
- if (false === $smd) {
- return false;
- }
-
- return $smd;
- }
-
- /**
- * Delete a file containing a cached SMD
- *
- * @param string $filename
- * @return bool
- */
- public static function deleteSmd($filename)
- {
- if (is_string($filename) && file_exists($filename)) {
- unlink($filename);
- return true;
- }
-
- return false;
- }
-}