soliantconsulting/SimpleFM

View on GitHub
src/Repository/Builder/Metadata/RecordId.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
<?php
declare(strict_types = 1);

namespace Soliant\SimpleFM\Repository\Builder\Metadata;

final class RecordId
{
    /**
     * @var string
     */
    private $propertyName;

    public function __construct(string $propertyName)
    {
        $this->propertyName = $propertyName;
    }

    public function getPropertyName() : string
    {
        return $this->propertyName;
    }
}