@@ -605,10 +605,10 @@ |
||
| 605 | 605 | case '10': |
| 606 | 606 | // Sounds like |
| 607 | 607 | /** |
| 608 | - * Indexer object |
|
| 609 | - * |
|
| 610 | - * @var Indexer |
|
| 611 | - */ |
|
| 608 | + * Indexer object |
|
| 609 | + * |
|
| 610 | + * @var Indexer |
|
| 611 | + */ |
|
| 612 | 612 | $indexerObj = GeneralUtility::makeInstance(Indexer::class); |
| 613 | 613 | // Perform metaphone search |
| 614 | 614 | $storeMetaphoneInfoAsWords = !$this->isTableUsed('index_words'); |
@@ -4647,7 +4647,7 @@ |
||
| 4647 | 4647 | * |
| 4648 | 4648 | * @param int $targetPid Target page id |
| 4649 | 4649 | * @return mixed Return domain data or NULL |
| 4650 | - */ |
|
| 4650 | + */ |
|
| 4651 | 4651 | public function getDomainDataForPid($targetPid) |
| 4652 | 4652 | { |
| 4653 | 4653 | // Using array_key_exists() here, nice $result can be NULL |
@@ -2832,7 +2832,7 @@ |
||
| 2832 | 2832 | $tempCommaReplacementString = '###KASPER###'; |
| 2833 | 2833 | |
| 2834 | 2834 | // replace every "," wrapped in "()" by a "unique" string |
| 2835 | - $string = preg_replace_callback('/\((?>[^()]|(?R))*\)/', function ($result) use ($tempCommaReplacementString) { |
|
| 2835 | + $string = preg_replace_callback('/\((?>[^()]|(?R))*\)/', function($result) use ($tempCommaReplacementString) { |
|
| 2836 | 2836 | return str_replace(',', $tempCommaReplacementString, $result[0]); |
| 2837 | 2837 | }, $string); |
| 2838 | 2838 | |
@@ -512,8 +512,8 @@ |
||
| 512 | 512 | } |
| 513 | 513 | |
| 514 | 514 | /** |
| 515 | - * @return string The HTML for the menu |
|
| 516 | - */ |
|
| 515 | + * @return string The HTML for the menu |
|
| 516 | + */ |
|
| 517 | 517 | public function writeMenu() |
| 518 | 518 | { |
| 519 | 519 | return ''; |
@@ -22,11 +22,11 @@ |
||
| 22 | 22 | class FileReference extends \TYPO3\CMS\Extbase\Domain\Model\AbstractFileFolder |
| 23 | 23 | { |
| 24 | 24 | /** |
| 25 | - * Uid of the referenced sys_file. Needed for extbase to serialize the |
|
| 26 | - * reference correctly. |
|
| 27 | - * |
|
| 28 | - * @var int |
|
| 29 | - */ |
|
| 25 | + * Uid of the referenced sys_file. Needed for extbase to serialize the |
|
| 26 | + * reference correctly. |
|
| 27 | + * |
|
| 28 | + * @var int |
|
| 29 | + */ |
|
| 30 | 30 | protected $uidLocal; |
| 31 | 31 | |
| 32 | 32 | /** |
@@ -60,7 +60,6 @@ |
||
| 60 | 60 | |
| 61 | 61 | /** |
| 62 | 62 | * @var \TYPO3\CMS\Extbase\Persistence\PersistenceManagerInterface |
| 63 | - |
|
| 64 | 63 | */ |
| 65 | 64 | protected $persistenceManager; |
| 66 | 65 | |
@@ -57,8 +57,8 @@ |
||
| 57 | 57 | protected $elements = []; |
| 58 | 58 | |
| 59 | 59 | /** |
| 60 | - * @var string |
|
| 61 | - */ |
|
| 60 | + * @var string |
|
| 61 | + */ |
|
| 62 | 62 | protected $searchWord; |
| 63 | 63 | |
| 64 | 64 | /** |
@@ -79,7 +79,7 @@ |
||
| 79 | 79 | } |
| 80 | 80 | |
| 81 | 81 | return '<img src="' . htmlspecialchars(PathUtility::getAbsoluteWebPath($icon)) |
| 82 | - . '" width="16" height="16" title="' . htmlspecialchars($title) |
|
| 83 | - . '" alt="' . htmlspecialchars($title) . '" />'; |
|
| 82 | + . '" width="16" height="16" title="' . htmlspecialchars($title) |
|
| 83 | + . '" alt="' . htmlspecialchars($title) . '" />'; |
|
| 84 | 84 | } |
| 85 | 85 | } |
@@ -2597,10 +2597,10 @@ |
||
| 2597 | 2597 | $this->imageMagickExec($mask, $theMask, '-colorspace GRAY +matte'); |
| 2598 | 2598 | |
| 2599 | 2599 | $parameters = '-compose over +matte ' |
| 2600 | - . CommandUtility::escapeShellArgument($input) . ' ' |
|
| 2601 | - . CommandUtility::escapeShellArgument($overlay) . ' ' |
|
| 2602 | - . CommandUtility::escapeShellArgument($theMask) . ' ' |
|
| 2603 | - . CommandUtility::escapeShellArgument($output); |
|
| 2600 | + . CommandUtility::escapeShellArgument($input) . ' ' |
|
| 2601 | + . CommandUtility::escapeShellArgument($overlay) . ' ' |
|
| 2602 | + . CommandUtility::escapeShellArgument($theMask) . ' ' |
|
| 2603 | + . CommandUtility::escapeShellArgument($output); |
|
| 2604 | 2604 | $cmd = CommandUtility::imageMagickCommand('combine', $parameters); |
| 2605 | 2605 | $this->IM_commands[] = [$output, $cmd]; |
| 2606 | 2606 | $ret = CommandUtility::exec($cmd); |
@@ -2567,7 +2567,7 @@ |
||
| 2567 | 2567 | } |
| 2568 | 2568 | // If addFrameSelection is set in the Install Tool, a frame number is added to |
| 2569 | 2569 | // select a specific page of the image (by default this will be the first page) |
| 2570 | - $frame = $this->addFrameSelection ? '[' . (int)$frame . ']' : ''; |
|
| 2570 | + $frame = $this->addFrameSelection ? '[' . (int)$frame . ']' : ''; |
|
| 2571 | 2571 | $cmd = CommandUtility::imageMagickCommand('convert', $params . ' ' . CommandUtility::escapeShellArgument($input . $frame) . ' ' . CommandUtility::escapeShellArgument($output)); |
| 2572 | 2572 | $this->IM_commands[] = [$output, $cmd]; |
| 2573 | 2573 | $ret = CommandUtility::exec($cmd); |
@@ -1234,7 +1234,6 @@ |
||
| 1234 | 1234 | |
| 1235 | 1235 | /** |
| 1236 | 1236 | * Creates a (cryptographic) hash for a fileIdentifier. |
| 1237 | - |
|
| 1238 | 1237 | * @param string $fileIdentifier |
| 1239 | 1238 | * @param string $hash |
| 1240 | 1239 | * |