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-log/src/Filter/Priority.php')
-rw-r--r--vendor/zendframework/zend-log/src/Filter/Priority.php66
1 files changed, 0 insertions, 66 deletions
diff --git a/vendor/zendframework/zend-log/src/Filter/Priority.php b/vendor/zendframework/zend-log/src/Filter/Priority.php
deleted file mode 100644
index 7df5586..0000000
--- a/vendor/zendframework/zend-log/src/Filter/Priority.php
+++ /dev/null
@@ -1,66 +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\Log\Filter;
-
-use Traversable;
-use Zend\Log\Exception;
-
-class Priority implements FilterInterface
-{
- /**
- * @var int
- */
- protected $priority;
-
- /**
- * @var string
- */
- protected $operator;
-
- /**
- * Filter logging by $priority. By default, it will accept any log
- * event whose priority value is less than or equal to $priority.
- *
- * @param int|array|Traversable $priority Priority
- * @param string $operator Comparison operator
- * @return Priority
- * @throws Exception\InvalidArgumentException
- */
- public function __construct($priority, $operator = null)
- {
- if ($priority instanceof Traversable) {
- $priority = iterator_to_array($priority);
- }
- if (is_array($priority)) {
- $operator = isset($priority['operator']) ? $priority['operator'] : null;
- $priority = isset($priority['priority']) ? $priority['priority'] : null;
- }
- if (!is_int($priority) && !ctype_digit($priority)) {
- throw new Exception\InvalidArgumentException(sprintf(
- 'Priority must be a number, received "%s"',
- gettype($priority)
- ));
- }
-
- $this->priority = (int) $priority;
- $this->operator = $operator === null ? '<=' : $operator;
- }
-
- /**
- * Returns TRUE to accept the message, FALSE to block it.
- *
- * @param array $event event data
- * @return bool accepted?
- */
- public function filter(array $event)
- {
- return version_compare($event['priority'], $this->priority, $this->operator);
- }
-}