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-filter/src/AbstractFilter.php')
-rw-r--r--vendor/zendframework/zend-filter/src/AbstractFilter.php100
1 files changed, 0 insertions, 100 deletions
diff --git a/vendor/zendframework/zend-filter/src/AbstractFilter.php b/vendor/zendframework/zend-filter/src/AbstractFilter.php
deleted file mode 100644
index 138a74e..0000000
--- a/vendor/zendframework/zend-filter/src/AbstractFilter.php
+++ /dev/null
@@ -1,100 +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\Filter;
-
-use Traversable;
-use Zend\Stdlib\StringUtils;
-
-abstract class AbstractFilter implements FilterInterface
-{
- /**
- * Filter options
- *
- * @var array
- */
- protected $options = array();
-
- /**
- * @return bool
- * @deprecated Since 2.1.0
- */
- public static function hasPcreUnicodeSupport()
- {
- return StringUtils::hasPcreUnicodeSupport();
- }
-
- /**
- * @param array|Traversable $options
- * @return self
- * @throws Exception\InvalidArgumentException
- */
- public function setOptions($options)
- {
- if (!is_array($options) && !$options instanceof Traversable) {
- throw new Exception\InvalidArgumentException(sprintf(
- '"%s" expects an array or Traversable; received "%s"',
- __METHOD__,
- (is_object($options) ? get_class($options) : gettype($options))
- ));
- }
-
- foreach ($options as $key => $value) {
- $setter = 'set' . str_replace(' ', '', ucwords(str_replace('_', ' ', $key)));
- if (method_exists($this, $setter)) {
- $this->{$setter}($value);
- } elseif (array_key_exists($key, $this->options)) {
- $this->options[$key] = $value;
- } else {
- throw new Exception\InvalidArgumentException(
- sprintf(
- 'The option "%s" does not have a matching %s setter method or options[%s] array key',
- $key,
- $setter,
- $key
- )
- );
- }
- }
- return $this;
- }
-
- /**
- * Retrieve options representing object state
- *
- * @return array
- */
- public function getOptions()
- {
- return $this->options;
- }
-
- /**
- * Invoke filter as a command
- *
- * Proxies to {@link filter()}
- *
- * @param mixed $value
- * @throws Exception\ExceptionInterface If filtering $value is impossible
- * @return mixed
- */
- public function __invoke($value)
- {
- return $this->filter($value);
- }
-
- /**
- * @param mixed $options
- * @return bool
- */
- protected static function isOptions($options)
- {
- return (is_array($options) || $options instanceof Traversable);
- }
-}