rector/packages/Caching/ValueObject/CacheFilePaths.php
Abdul Malik Ikhsan fc10fce13d
[Rectify] [Php81] Enable Rectify on Readonly Property only (#1384)
* re-enable rectify and ecs

* [Rectify] [Php81] Enable Rectify on Readonly Property only

* comment

* [ci-review] Rector Rectify

* [ci-review] Rector Rectify

* [ci-review] Rector Rectify

* [ci-review] Rector Rectify

* [ci-review] Rector Rectify

Co-authored-by: GitHub Action <action@github.com>
2021-12-04 15:32:52 +03:00

31 lines
578 B
PHP

<?php
declare(strict_types=1);
namespace Rector\Caching\ValueObject;
final class CacheFilePaths
{
public function __construct(
private readonly string $firstDirectory,
private readonly string $secondDirectory,
private readonly string $filePath
) {
}
public function getFirstDirectory(): string
{
return $this->firstDirectory;
}
public function getSecondDirectory(): string
{
return $this->secondDirectory;
}
public function getFilePath(): string
{
return $this->filePath;
}
}