flux-querybuilder/src/Type/FnType.php

16 lines
265 B
PHP
Raw Normal View History

<?php
namespace Arendsen\FluxQueryBuilder\Type;
class FnType implements TypeInterface
{
public function __construct(string $value)
{
$this->value = $value;
}
public function __toString(): string
{
return $this->value;
}
}