for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Http\HttplugBundle\Collector;
class Stack
{
/**
* @var string
*/
private $client;
* @var Profile[]
private $profiles = [];
private $request;
private $response;
* @var bool
private $failed = false;
* @return string
public function getClient()
return $this->client;
}
* @param string $client
public function setClient($client)
$this->client = $client;
* @param Profile $profile
public function addProfile(Profile $profile)
$this->profiles[] = $profile;
* @return Profile[]
public function getProfiles()
return $this->profiles;
public function getRequest()
return $this->request;
* @param string $request
public function setRequest($request)
$this->request = $request;
public function getResponse()
return $this->response;
* @param string $response
public function setResponse($response)
$this->response = $response;
* @return bool
public function isFailed()
return $this->failed;
* @param bool $failed
public function setFailed($failed)
$this->failed = $failed;