1<?php
2
3
4namespace Tiki\Lib\core\Tracker\Rule\Type;
5
6
7use Tiki\Lib\core\Tracker\Rule\Operator;
8use Tiki\Lib\core\Tracker\Rule\Action;
9
10class Text extends Type
11{
12	public function __construct()
13	{
14		parent::__construct('text', [
15			new Operator\TextEquals(),
16			new Operator\TextContains(),
17			new Operator\TextNotContains(),
18			new Operator\TextIsEmpty(),
19			new Operator\TextIsNotEmpty(),
20			new Action\Required(),
21		]);
22	}
23}
24