for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TemplesOfCode\CodeSanity;
/**
* Class DiffItem
* @package TemplesOfCode\CodeSanity
*/
class DiffItem
{
* @var RosterItem
protected $sotRosterItem = null;
protected $targetRosterItem = null;
* @return RosterItem
public function getSotRosterItem()
return $this->sotRosterItem;
}
* @param RosterItem $sotRosterItem
* @return DiffItem
public function setSotRosterItem(RosterItem $sotRosterItem)
$this->sotRosterItem = $sotRosterItem;
return $this;
public function getTargetRosterItem()
return $this->targetRosterItem;
* @param RosterItem $targetRosterItem
public function setTargetRosterItem(RosterItem $targetRosterItem)
$this->targetRosterItem = $targetRosterItem;