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