for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace rtens\domin\delivery\web;
class BreadCrumb {
/** @var string */
private $target;
private $caption;
/**
* @param string $caption
* @param string $target
*/
public function __construct($caption, $target) {
$this->caption = $caption;
$this->target = $target;
}
* @return string
public function getCaption() {
return $this->caption;
public function getTarget() {
return $this->target;