for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace Agares\MicroORM;
class EntityFieldDefinition
{
/**
* @var string
*/
private $typeName;
private $name;
private $fieldName;
public function __construct(string $fieldName, string $name, string $typeName)
$this->name = $name;
$this->typeName = $typeName;
$this->fieldName = $fieldName;
}
public function getTypeName() : string
return $this->typeName;
public function getName() : string
return $this->name;
public function getFieldName() : string
return $this->fieldName;