Security update for permissions_by_term
[yaffs-website] / vendor / behat / behat / src / Behat / Behat / Transformation / SimpleArgumentTransformation.php
diff --git a/vendor/behat/behat/src/Behat/Behat/Transformation/SimpleArgumentTransformation.php b/vendor/behat/behat/src/Behat/Behat/Transformation/SimpleArgumentTransformation.php
new file mode 100644 (file)
index 0000000..77cdeef
--- /dev/null
@@ -0,0 +1,63 @@
+<?php
+
+/*
+ * This file is part of the Behat.
+ * (c) Konstantin Kudryashov <ever.zet@gmail.com>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+namespace Behat\Behat\Transformation;
+
+use Behat\Behat\Definition\Call\DefinitionCall;
+use Behat\Testwork\Call\CallCenter;
+use ReflectionMethod;
+
+/**
+ * Represents a simple self-contained transformation capable of changing a single argument.
+ *
+ * @author Konstantin Kudryashov <ever.zet@gmail.com>
+ */
+interface SimpleArgumentTransformation extends Transformation
+{
+    /**
+     * Checks if transformation supports given pattern.
+     *
+     * @param string           $pattern
+     * @param ReflectionMethod $method
+     *
+     * @return bool
+     */
+    static public function supportsPatternAndMethod($pattern, ReflectionMethod $method);
+
+    /**
+     * Returns transformation priority.
+     *
+     * @return integer
+     */
+    public function getPriority();
+
+    /**
+     * Checks if transformation supports argument.
+     *
+     * @param DefinitionCall $definitionCall
+     * @param integer|string $argumentIndex
+     * @param mixed          $argumentValue
+     *
+     * @return Boolean
+     */
+    public function supportsDefinitionAndArgument(DefinitionCall $definitionCall, $argumentIndex, $argumentValue);
+
+    /**
+     * Transforms argument value using transformation and returns a new one.
+     *
+     * @param CallCenter     $callCenter
+     * @param DefinitionCall $definitionCall
+     * @param integer|string $argumentIndex
+     * @param mixed          $argumentValue
+     *
+     * @return mixed
+     */
+    public function transformArgument(CallCenter $callCenter, DefinitionCall $definitionCall, $argumentIndex, $argumentValue);
+}