for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace rtens\domin\parameters;
class Identifier {
private $target;
private $id;
public function __construct($target, $id) {
$this->target = $target;
$this->id = $id;
}
public function getId() {
return $this->id;
public function getTarget() {
return $this->target;
public function __toString() {
return $this->id . ':' . $this->target;