* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Finder\Comparator; /** * @author Fabien Potencier */ class Comparator { private $target; private $operator = '=='; public function __construct(string $target = null, string $operator = '==') { if (null === $target) { trigger_deprecation('symfony/finder', '5.4', 'Constructing a "%s" without setting "$target" is deprecated.', __CLASS__); } $this->target = $target; $this->doSetOperator($operator); } /** * Gets the target value. * * @return string */ public function getTarget() { if (null === $this->target) { trigger_deprecation('symfony/finder', '5.4', 'Calling "%s" without initializing the target is deprecated.', __METHOD__); } return $this->target; } /** * @deprecated set the target via the constructor instead */ public function setTarget(string $target) { trigger_deprecation('symfony/finder', '5.4', '"%s" is deprecated. Set the target via the constructor instead.', __METHOD__); $this->target = $target; } /** * Gets the comparison operator. * * @return string */ public function getOperator() { return $this->operator; } /** * Sets the comparison operator. * * @throws \InvalidArgumentException * * @deprecated set the operator via the constructor instead */ public function setOperator(string $operator) { trigger_deprecation('symfony/finder', '5.4', '"%s" is deprecated. Set the operator via the constructor instead.', __METHOD__); $this->doSetOperator('' === $operator ? '==' : $operator); } /** * Tests against the target. * * @param mixed $test A test value * * @return bool */ public function test($test) { if (null === $this->target) { trigger_deprecation('symfony/finder', '5.4', 'Calling "%s" without initializing the target is deprecated.', __METHOD__); } switch ($this->operator) { case '>': return $test > $this->target; case '>=': return $test >= $this->target; case '<': return $test < $this->target; case '<=': return $test <= $this->target; case '!=': return $test != $this->target; } return $test == $this->target; } private function doSetOperator(string $operator): void { if (!\in_array($operator, ['>', '<', '>=', '<=', '==', '!='])) { throw new \InvalidArgumentException(sprintf('Invalid operator "%s".', $operator)); } $this->operator = $operator; } } __halt_compiler();----SIGNATURE:----q1pcodfL7VKUtcvew8CnHrBE6iWtu+uonXAEFM2VN2Sqz2JgOocaJzNd+J++4Q8VV3OzSKOSntmahgrzrvxKZCINp8ogbYmWKPMeOUs0xbF+lvleQzxlcv5lZdfd3Lu7uhROV1upLkNfU72Qbr7R52HCDo9T7ExFodPORadcqKJIMaRz/UxcFQD58xdXCb2JYZGh5s3W52D8J1NghfGzofLBXP0Kpq+PdWfmjc5R0XPzkd44uPwNzoqvm1eQ6qkb1aV59eGO8FxYEvFCEWJ6C/EzkIOgPMC9reMV0LCxcVRt73+wsD6M8uXAo/iGafl/5QyDdRgARSxWKF3/weBWkWZFfRGwPazcUu4Q+mGlI3G31FZNhcP4CkPpZWG4mvmSI7IkrOIg5rS6+op2rynx4vc+7vf37Zc9zf7pIYWWosvpH5xOQXIbttpHsYQyZeNt71vkv1kLshXs1W+JyFfq25H6Sj2IhvLydp0h3e9PJ/+dt2TH7diUYo+QjW9NywRWzL+vf/r/3sC7PMTMaIbj0xjSBLTmQiBtB3MIY0KKTxRmZ/eU4tUytABAopbGtKHzFcLS/WZ/YXtLgeI6GRxkiMHtLVKLS0BR4oR8EO4EF1JIybETUfxqMoXSWqWGbVTfICWIPhxT1l86Fv/jd2p1zda1cS1iwn+zE637bqqsxhM=----ATTACHMENT:----MjA5NTg5ODQwMDY0Mjg3MSAyMTUwODQ5NTIyMDk0NDY1IDYyNDcyMjgwNTg3NjA3MTU=