‪TYPO3CMS  ‪main
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 
43  public function ‪__construct(string ‪$identifier, string ‪$expression, callable ‪$processor)
44  {
45  $this->identifier = ‪$identifier;
46  $this->expression = ‪$expression;
47  $this->processor = ‪$processor;
48  }
49 
50  public function ‪getIdentifier(): string
51  {
53  }
54 
55  public function ‪getExpression(): string
56  {
58  }
59 
60  public function ‪getProcessor(): callable
61  {
62  return ‪$this->processor;
63  }
64 }
‪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:40
‪TYPO3\CMS\Form\Domain\Configuration\ArrayProcessing\ArrayProcessing\getProcessor
‪getProcessor()
Definition: ArrayProcessing.php:57
‪TYPO3\CMS\Form\Domain\Configuration\ArrayProcessing\ArrayProcessing\getExpression
‪getExpression()
Definition: ArrayProcessing.php:52
‪TYPO3\CMS\Form\Domain\Configuration\ArrayProcessing\ArrayProcessing\getIdentifier
‪getIdentifier()
Definition: ArrayProcessing.php:47