for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MS\Sentry\Monitor\Model;
class SentryRequest
{
/**
* @var string
*/
private $baseUrl;
private $apiKey;
* @param string $baseUrl
* @param string $apiKey
public function __construct($baseUrl, $apiKey)
$this->baseUrl = $baseUrl;
$this->apiKey = $apiKey;
}
* @return string
public function getBaseUrl()
return $this->baseUrl;
public function getApiKey()
return $this->apiKey;