for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Http\HttplugBundle\Collector;
class ProfileStack
{
/**
* @var string
*/
private $client;
* @var Profile[]
private $profiles;
* @param string $client
public function __construct($client)
$this->client = $client;
$this->profiles = [];
}
* @return string
public function getClient()
return $this->client;
* @param Profile $profile
public function addProfile(Profile $profile)
$this->profiles[] = $profile;
* @return Profile[]
public function getProfiles()
return $this->profiles;