| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | public function __construct( |
||
| 28 | string $serviceName, |
||
| 29 | string $serverUrl, |
||
| 30 | ?string $version = null, |
||
| 31 | ?string $environment = null, |
||
| 32 | ?string $framework = null |
||
| 33 | ) { |
||
| 34 | $this->serviceName = $serviceName; |
||
| 35 | $this->serverUrl = $serverUrl; |
||
| 36 | $this->version = $version; |
||
| 37 | $this->environment = $environment; |
||
| 38 | $this->framework = $framework; |
||
| 39 | } |
||
| 54 |