| Current Path : /var/www/clients/client3/web2/web/vendor/sebastian/phpcpd/src/ |
| Current File : /var/www/clients/client3/web2/web/vendor/sebastian/phpcpd/src/CodeCloneFile.php |
<?php declare(strict_types=1);
/*
* This file is part of PHP Copy/Paste Detector (PHPCPD).
*
* (c) Sebastian Bergmann <sebastian@phpunit.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace SebastianBergmann\PHPCPD;
final class CodeCloneFile
{
/**
* @var string
*/
private $id;
/**
* @var string
*/
private $name;
/**
* @var int
*/
private $startLine;
public function __construct(string $name, int $startLine)
{
$this->name = $name;
$this->startLine = $startLine;
$this->id = $this->name . ':' . $this->startLine;
}
public function id(): string
{
return $this->id;
}
public function name(): string
{
return $this->name;
}
public function startLine(): int
{
return $this->startLine;
}
}