for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the haveibeenpwned-bundle package.
*
* (c) 2019 WEBEWEB
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace WBW\Bundle\HaveIBeenPwnedBundle\Event;
use WBW\Library\HaveIBeenPwned\Model\Request\BreachesRequest;
use WBW\Library\HaveIBeenPwned\Model\Response\BreachesResponse;
/**
* Breaches event.
* @author webeweb <https://github.com/webeweb/>
* @package WBW\Bundle\HaveIBeenPwnedBundle\Event
class BreachesEvent extends AbstractHaveIBeenPwnedEvent {
* Constructor.
public function __construct() {
parent::__construct(HaveIBeenPwnedEvents::BREACHES, null);
}
* Get the breaches request.
* @return BreachesRequest Returns the breaches request.
public function getRequest() {
return parent::getRequest();
* Get the breaches response.
* @return BreachesResponse Returns the breaches response.
public function getResponse() {
return parent::getResponse();