Hal\MutaTesting\Test\UnitCollection::getByFile PHP Method

getByFile() public method

public getByFile ( $file )
    public function getByFile($file)
    {
        foreach ($this->datas as $unit) {
            if ($unit->getFile() == $file) {
                return $unit;
            }
        }
        return null;
    }