for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TemplesOfCode\CodeSanity;
/**
* Class RosterItem
* @package TemplesOfCode\CodeSanity
*/
class RosterItem
{
* @var Roster
protected $roster;
* @var string
private $hash;
/***
private $relativeFileName;
* @return Roster
public function getRoster()
return $this->roster;
}
* @param Roster $roster
* @return RosterItem
public function setRoster(Roster $roster)
$this->roster = $roster;
return $this;
* @return string
public function getHash()
return $this->hash;
* @param string $hash
public function setHash($hash)
$this->hash = $hash;
public function getRelativeFileName()
return $this->relativeFileName;
* @param string $relativeFileName
public function setRelativeFileName($relativeFileName)
$this->relativeFileName = $relativeFileName;