‪TYPO3CMS  11.5
AfterFileCommandProcessedEvent.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 
26 {
27  private array ‪$command;
28  private ‪$result;
29  private string ‪$conflictMode;
30 
31  public function ‪__construct(array ‪$command, ‪$result, string ‪$conflictMode)
32  {
33  $this->‪command = ‪$command;
34  $this->result = ‪$result;
35  $this->conflictMode = ‪$conflictMode;
36  }
37 
48  public function getCommand(): array
49  {
51  }
52 
57  public function ‪getResult()
58  {
59  return ‪$this->result;
60  }
61 
66  public function ‪getConflictMode(): string
67  {
69  }
70 }
‪TYPO3\CMS\Core\Resource\Event\AfterFileCommandProcessedEvent\$result
‪$result
Definition: AfterFileCommandProcessedEvent.php:28
‪TYPO3\CMS\Core\Resource\Event\AfterFileCommandProcessedEvent\$conflictMode
‪string $conflictMode
Definition: AfterFileCommandProcessedEvent.php:29
‪TYPO3\CMS\Core\Resource\Event\AfterFileCommandProcessedEvent\getResult
‪mixed getResult()
Definition: AfterFileCommandProcessedEvent.php:57
‪TYPO3\CMS\Core\Resource\Event\AfterFileCommandProcessedEvent\$command
‪array $command
Definition: AfterFileCommandProcessedEvent.php:27
‪TYPO3\CMS\Core\Resource\Event\AfterFileCommandProcessedEvent\command
‪array< string, function getCommand():array { return $this-> command
Definition: AfterFileCommandProcessedEvent.php:50
‪TYPO3\CMS\Core\Resource\Event\AfterFileCommandProcessedEvent
Definition: AfterFileCommandProcessedEvent.php:26
‪TYPO3\CMS\Core\Resource\Event\AfterFileCommandProcessedEvent\getConflictMode
‪string getConflictMode()
Definition: AfterFileCommandProcessedEvent.php:66
‪TYPO3\CMS\Core\Resource\Event
Definition: AfterFileAddedEvent.php:18
‪TYPO3\CMS\Core\Resource\Event\AfterFileCommandProcessedEvent\__construct
‪__construct(array $command, $result, string $conflictMode)
Definition: AfterFileCommandProcessedEvent.php:31