Updated to Drupal 8.5. Core Media not yet in use.
[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
deleted file mode 100644 (file)
index 77cdeef..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-<?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);
-}