for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Freshcells\SoapClientBundle\Event;
class RequestEvent extends Event
{
/**
* @var string
*/
private $id;
private $resource;
private $request;
* RequestEvent constructor.
* @param string $id
* @param string $resource
* @param $request
public function __construct(string $id, string $resource, $request)
$this->id = $id;
$this->resource = $resource;
$this->request = $request;
}
* @return mixed
public function getId()
return $this->id;
* @return string
public function getResource(): string
return $this->resource;
public function getRequest()
return $this->request;