mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-12 12:33:26 +00:00
22 lines
303 B
PHP
22 lines
303 B
PHP
<?php
|
|
|
|
namespace Alchemy\Phrasea\SearchEngine\Elastic\AST;
|
|
|
|
use Assert\Assertion;
|
|
|
|
class Flag
|
|
{
|
|
private $name;
|
|
|
|
public function __construct($name)
|
|
{
|
|
Assertion::string($name);
|
|
$this->name = $name;
|
|
}
|
|
|
|
public function getName()
|
|
{
|
|
return $this->name;
|
|
}
|
|
}
|