for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* File was created 05.02.2015 21:44
*/
namespace PeekAndPoke\Component\Slumber\Data\Addon\Journal\DomainModel;
* @author Karsten J. Gerber <[email protected]>
class RecordDiffEntry
{
/** @var string */
private $key;
private $before;
private $after;
* @param string $key
* @param string $before
* @param string $after
public function __construct($key, $before, $after)
$this->key = $key;
$this->before = $before;
$this->after = $after;
}
* @return string
public function getKey()
return $this->key;
public function getBefore()
return $this->before;
public function getAfter()
return $this->after;