‪TYPO3CMS  10.4
ArrayProcessing.php
Go to the documentation of this file.
1 <?php
2 
3 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 
19 
27 {
28 
32  protected ‪$identifier;
33 
37  protected ‪$expression;
38 
42  protected ‪$processor;
43 
49  public function ‪__construct(string ‪$identifier, string ‪$expression, callable ‪$processor)
50  {
51  $this->identifier = ‪$identifier;
52  $this->expression = ‪$expression;
53  $this->processor = ‪$processor;
54  }
55 
59  public function ‪getIdentifier(): string
60  {
61  return ‪$this->identifier;
62  }
63 
67  public function ‪getExpression(): string
68  {
69  return ‪$this->expression;
70  }
71 
75  public function ‪getProcessor(): callable
76  {
77  return ‪$this->processor;
78  }
79 }
‪TYPO3\CMS\Form\Domain\Configuration\ArrayProcessing\ArrayProcessing\getExpression
‪string getExpression()
Definition: ArrayProcessing.php:64
‪TYPO3\CMS\Form\Domain\Configuration\ArrayProcessing\ArrayProcessing\$expression
‪string $expression
Definition: ArrayProcessing.php:35
‪TYPO3\CMS\Form\Domain\Configuration\ArrayProcessing
Definition: ArrayProcessing.php:18
‪TYPO3\CMS\Form\Domain\Configuration\ArrayProcessing\ArrayProcessing\$identifier
‪string $identifier
Definition: ArrayProcessing.php:31
‪TYPO3\CMS\Form\Domain\Configuration\ArrayProcessing\ArrayProcessing
Definition: ArrayProcessing.php:27
‪TYPO3\CMS\Form\Domain\Configuration\ArrayProcessing\ArrayProcessing\$processor
‪callable $processor
Definition: ArrayProcessing.php:39
‪TYPO3\CMS\Form\Domain\Configuration\ArrayProcessing\ArrayProcessing\__construct
‪__construct(string $identifier, string $expression, callable $processor)
Definition: ArrayProcessing.php:46
‪TYPO3\CMS\Form\Domain\Configuration\ArrayProcessing\ArrayProcessing\getProcessor
‪callable getProcessor()
Definition: ArrayProcessing.php:72
‪TYPO3\CMS\Form\Domain\Configuration\ArrayProcessing\ArrayProcessing\getIdentifier
‪string getIdentifier()
Definition: ArrayProcessing.php:56