summaryrefslogtreecommitdiff
path: root/vendor/gregwar/captcha/PhraseBuilderInterface.php
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2017-12-15 13:27:25 -0800
committerFrédéric Guillot <fred@kanboard.net>2017-12-15 13:27:25 -0800
commit8e6476b4028e44687e10bf7fb2617a2d2fff97d2 (patch)
treef010db02cb0ff016bdc806a0a87e1a4b21946f0a /vendor/gregwar/captcha/PhraseBuilderInterface.php
parenta93b8e10f5954be0853eec693c13e84c4bd9e6f2 (diff)
Update composer dependencies
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);
-}