‪TYPO3CMS  9.5
ArrayProcessing.php
Go to the documentation of this file.
1 <?php
2 declare(strict_types = 1);
4 
5 /*
6  * This file is part of the TYPO3 CMS project.
7  *
8  * It is free software; you can redistribute it and/or modify it under
9  * the terms of the GNU General Public License, either version 2
10  * of the License, or any later version.
11  *
12  * For the full copyright and license information, please read the
13  * LICENSE.txt file that was distributed with this source code.
14  *
15  * The TYPO3 project - inspiring people to share!
16  */
17 
25 {
26 
30  protected ‪$identifier;
31 
35  protected ‪$expression;
36 
40  protected ‪$processor;
41 
47  public function ‪__construct(string ‪$identifier, string ‪$expression, callable ‪$processor)
48  {
49  $this->identifier = ‪$identifier;
50  $this->expression = ‪$expression;
51  $this->processor = ‪$processor;
52  }
53 
57  public function ‪getIdentifier(): string
58  {
59  return ‪$this->identifier;
60  }
61 
65  public function ‪getExpression(): string
66  {
67  return ‪$this->expression;
68  }
69 
73  public function ‪getProcessor(): callable
74  {
75  return ‪$this->processor;
76  }
77 }
‪TYPO3\CMS\Form\Domain\Configuration\ArrayProcessing\ArrayProcessing\getExpression
‪string getExpression()
Definition: ArrayProcessing.php:62
‪TYPO3\CMS\Form\Domain\Configuration\ArrayProcessing\ArrayProcessing\$expression
‪string $expression
Definition: ArrayProcessing.php:33
‪TYPO3\CMS\Form\Domain\Configuration\ArrayProcessing
Definition: ArrayProcessing.php:3
‪TYPO3\CMS\Form\Domain\Configuration\ArrayProcessing\ArrayProcessing\$identifier
‪string $identifier
Definition: ArrayProcessing.php:29
‪TYPO3\CMS\Form\Domain\Configuration\ArrayProcessing\ArrayProcessing
Definition: ArrayProcessing.php:25
‪TYPO3\CMS\Form\Domain\Configuration\ArrayProcessing\ArrayProcessing\$processor
‪callable $processor
Definition: ArrayProcessing.php:37
‪TYPO3\CMS\Form\Domain\Configuration\ArrayProcessing\ArrayProcessing\__construct
‪__construct(string $identifier, string $expression, callable $processor)
Definition: ArrayProcessing.php:44
‪TYPO3\CMS\Form\Domain\Configuration\ArrayProcessing\ArrayProcessing\getProcessor
‪callable getProcessor()
Definition: ArrayProcessing.php:70
‪TYPO3\CMS\Form\Domain\Configuration\ArrayProcessing\ArrayProcessing\getIdentifier
‪string getIdentifier()
Definition: ArrayProcessing.php:54