‪TYPO3CMS  11.5
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 {
31  protected ‪$identifier;
32 
36  protected ‪$expression;
37 
41  protected ‪$processor;
42 
48  public function ‪__construct(string ‪$identifier, string ‪$expression, callable ‪$processor)
49  {
50  $this->identifier = ‪$identifier;
51  $this->expression = ‪$expression;
52  $this->processor = ‪$processor;
53  }
54 
58  public function ‪getIdentifier(): string
59  {
60  return ‪$this->identifier;
61  }
62 
66  public function ‪getExpression(): string
67  {
68  return ‪$this->expression;
69  }
70 
74  public function ‪getProcessor(): callable
75  {
76  return ‪$this->processor;
77  }
78 }
‪TYPO3\CMS\Form\Domain\Configuration\ArrayProcessing\ArrayProcessing\getExpression
‪string getExpression()
Definition: ArrayProcessing.php:63
‪TYPO3\CMS\Form\Domain\Configuration\ArrayProcessing\ArrayProcessing\$expression
‪string $expression
Definition: ArrayProcessing.php:34
‪TYPO3\CMS\Form\Domain\Configuration\ArrayProcessing
Definition: ArrayProcessing.php:18
‪TYPO3\CMS\Form\Domain\Configuration\ArrayProcessing\ArrayProcessing\$identifier
‪string $identifier
Definition: ArrayProcessing.php:30
‪TYPO3\CMS\Form\Domain\Configuration\ArrayProcessing\ArrayProcessing
Definition: ArrayProcessing.php:27
‪TYPO3\CMS\Form\Domain\Configuration\ArrayProcessing\ArrayProcessing\$processor
‪callable $processor
Definition: ArrayProcessing.php:38
‪TYPO3\CMS\Form\Domain\Configuration\ArrayProcessing\ArrayProcessing\__construct
‪__construct(string $identifier, string $expression, callable $processor)
Definition: ArrayProcessing.php:45
‪TYPO3\CMS\Form\Domain\Configuration\ArrayProcessing\ArrayProcessing\getProcessor
‪callable getProcessor()
Definition: ArrayProcessing.php:71
‪TYPO3\CMS\Form\Domain\Configuration\ArrayProcessing\ArrayProcessing\getIdentifier
‪string getIdentifier()
Definition: ArrayProcessing.php:55