Security update for permissions_by_term
[yaffs-website] / vendor / behat / behat / src / Behat / Behat / Definition / Pattern / Policy / PatternPolicy.php
diff --git a/vendor/behat/behat/src/Behat/Behat/Definition/Pattern/Policy/PatternPolicy.php b/vendor/behat/behat/src/Behat/Behat/Definition/Pattern/Policy/PatternPolicy.php
new file mode 100644 (file)
index 0000000..2476241
--- /dev/null
@@ -0,0 +1,60 @@
+<?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\Definition\Pattern\Policy;
+
+use Behat\Behat\Definition\Pattern\Pattern;
+use Behat\Behat\Definition\Pattern\PatternTransformer;
+
+/**
+ * Defines a way to handle custom definition patterns.
+ *
+ * @see PatternTransformer
+ *
+ * @author Konstantin Kudryashov <ever.zet@gmail.com>
+ */
+interface PatternPolicy
+{
+    /**
+     * Checks if policy supports pattern type.
+     *
+     * @param string $type
+     *
+     * @return Boolean
+     */
+    public function supportsPatternType($type);
+
+    /**
+     * Generates pattern for step text.
+     *
+     * @param string $stepText
+     *
+     * @return Pattern
+     */
+    public function generatePattern($stepText);
+
+    /**
+     * Checks if policy supports pattern.
+     *
+     * @param string $pattern
+     *
+     * @return Boolean
+     */
+    public function supportsPattern($pattern);
+
+    /**
+     * Transforms pattern string to regex.
+     *
+     * @param string $pattern
+     *
+     * @return string
+     */
+    public function transformPatternToRegex($pattern);
+}