summaryrefslogtreecommitdiff
path: root/vendor/gregwar/captcha/PhraseBuilderInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/gregwar/captcha/PhraseBuilderInterface.php')
-rw-r--r--vendor/gregwar/captcha/PhraseBuilderInterface.php21
1 files changed, 0 insertions, 21 deletions
diff --git a/vendor/gregwar/captcha/PhraseBuilderInterface.php b/vendor/gregwar/captcha/PhraseBuilderInterface.php
deleted file mode 100644
index 0a4f5361..00000000
--- a/vendor/gregwar/captcha/PhraseBuilderInterface.php
+++ /dev/null
@@ -1,21 +0,0 @@
-<?php
-
-namespace Gregwar\Captcha;
-
-/**
- * Interface for the PhraseBuilder
- *
- * @author Gregwar <g.passault@gmail.com>
- */
-interface PhraseBuilderInterface
-{
- /**
- * Generates random phrase of given length with given charset
- */
- public function build($length, $charset);
-
- /**
- * "Niceize" a code
- */
- public function niceize($str);
-}