for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Amock;
class Configuration
{
private $type;
private $sourceType;
private $value;
public function __construct(string $type, string $sourceType, string $value)
$this->type = $type;
$this->sourceType = $sourceType;
$this->value = $value;
}
public function getType(): string
return $this->type;
public function getSourceType(): string
return $this->sourceType;
public function getValue(): string
return $this->value;