Add class documentation
This commit is contained in:
parent
beec51e975
commit
8885e6bcac
|
@ -7,7 +7,10 @@ use Symfony\Component\HttpFoundation\Session\SessionInterface;
|
||||||
use Symfony\Component\Routing\RouterInterface;
|
use Symfony\Component\Routing\RouterInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Generates a CAPTCHA image
|
* Uses configuration parameters to call the services that generate captcha images
|
||||||
|
*
|
||||||
|
* @author Gregwar <g.passault@gmail.com>
|
||||||
|
* @author Jeremy Livingston <jeremy.j.livingston@gmail.com>
|
||||||
*/
|
*/
|
||||||
class CaptchaGenerator
|
class CaptchaGenerator
|
||||||
{
|
{
|
||||||
|
|
|
@ -4,7 +4,13 @@ namespace Gregwar\CaptchaBundle\Generator;
|
||||||
|
|
||||||
use Symfony\Component\Finder\Finder;
|
use Symfony\Component\Finder\Finder;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Builds a new captcha image
|
||||||
|
* Uses the fingerprint parameter, if one is passed, to generate the same image
|
||||||
|
*
|
||||||
|
* @author Gregwar <g.passault@gmail.com>
|
||||||
|
* @author Jeremy Livingston <jeremy.j.livingston@gmail.com>
|
||||||
|
*/
|
||||||
class ImageBuilder
|
class ImageBuilder
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -5,6 +5,9 @@ namespace Gregwar\CaptchaBundle\Generator;
|
||||||
use Symfony\Component\Finder\Finder;
|
use Symfony\Component\Finder\Finder;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Handles actions related to captcha image files including saving and garbage collection
|
||||||
|
*
|
||||||
|
* @author Gregwar <g.passault@gmail.com>
|
||||||
* @author Jeremy Livingston <jeremy@quizzle.com>
|
* @author Jeremy Livingston <jeremy@quizzle.com>
|
||||||
*/
|
*/
|
||||||
class ImageFileHandler
|
class ImageFileHandler
|
||||||
|
|
Loading…
Reference in New Issue