diff --git a/Build/Scripts/docBlockChecker.php b/Build/Scripts/docBlockChecker.php
new file mode 100755
index 0000000000000000000000000000000000000000..d429a4466370982c90848a6648b1a12a8abf5fa2
--- /dev/null
+++ b/Build/Scripts/docBlockChecker.php
@@ -0,0 +1,311 @@
+#!/usr/bin/env php
+<?php
+declare(strict_types = 1);
+
+/*
+ * This file is part of the TYPO3 CMS project.
+ *
+ * It is free software; you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License, either version 2
+ * of the License, or any later version.
+ *
+ * For the full copyright and license information, please read the
+ * LICENSE.txt file that was distributed with this source code.
+ *
+ * The TYPO3 project - inspiring people to share!
+ */
+
+use phpDocumentor\Reflection\DocBlockFactory;
+use PhpParser\Error;
+use PhpParser\Node;
+use PhpParser\NodeTraverser;
+use PhpParser\ParserFactory;
+use Symfony\Component\Console\Output\ConsoleOutput;
+use TYPO3\CMS\Extbase\Reflection\DocBlock\Tags\Var_;
+
+require_once __DIR__ . '/../../vendor/autoload.php';
+
+class NodeVisitor implements \PhpParser\NodeVisitor
+{
+    /**
+     * @var DocBlockFactory
+     */
+    private $docBlockFactory;
+
+    /**
+     * @var string|null
+     */
+    public $namespace;
+
+    /**
+     * @var string|null
+     */
+    public $className;
+
+    /**
+     * @var string|null
+     */
+    public $classCommentError;
+
+    /**
+     * @var array
+     */
+    public $properties = [];
+
+    /**
+     * @var array
+     */
+    public $methods = [];
+
+    /**
+     * @var bool
+     */
+    public $hasErrors = false;
+
+    /**
+     * Called once before traversal.
+     *
+     * Return value semantics:
+     *  * null:      $nodes stays as-is
+     *  * otherwise: $nodes is set to the return value
+     *
+     * @param Node[] $nodes Array of nodes
+     *
+     * @return Node[]|null Array of nodes
+     */
+    public function beforeTraverse(array $nodes)
+    {
+        $this->docBlockFactory = DocBlockFactory::createInstance();
+        $this->docBlockFactory->registerTagHandler('var', Var_::class);
+        return null;
+    }
+
+    /**
+     * Called when entering a node.
+     *
+     * Return value semantics:
+     *  * null
+     *        => $node stays as-is
+     *  * NodeTraverser::DONT_TRAVERSE_CHILDREN
+     *        => Children of $node are not traversed. $node stays as-is
+     *  * NodeTraverser::STOP_TRAVERSAL
+     *        => Traversal is aborted. $node stays as-is
+     *  * otherwise
+     *        => $node is set to the return value
+     *
+     * @param Node $node Node
+     *
+     * @return int|Node|null Replacement node (or special return value)
+     */
+    public function enterNode(Node $node)
+    {
+        switch (get_class($node)) {
+            case Node\Stmt\Namespace_::class:
+                /** @var Node\Stmt\Namespace_ $node */
+                $this->namespace = (string)$node->name;
+                break;
+            case Node\Stmt\Class_::class:
+                /** @var Node\Stmt\Class_ $node */
+                $this->className = (string)$node->name;
+
+                try {
+                    $docComment = $node->getDocComment();
+                    if ($docComment instanceof \PhpParser\Comment) {
+                        $this->docBlockFactory->create($docComment->getText());
+                    }
+                } catch (\Throwable $e) {
+                    $this->hasErrors = true;
+                    $this->classCommentError = $e->getMessage();
+                }
+                break;
+            case Node\Stmt\Property::class:
+                /** @var Node\Stmt\Property $node */
+                $property = [
+                    'name' => (string)$node->props[0]->name,
+                    'error' => null
+                ];
+
+                try {
+                    $docComment = $node->getDocComment();
+                    if ($docComment instanceof \PhpParser\Comment) {
+                        $this->docBlockFactory->create($docComment->getText());
+                    }
+                } catch (\Throwable $e) {
+                    $this->hasErrors = true;
+                    $property['error'] = $e->getMessage();
+                }
+
+                $this->properties[] = $property;
+                break;
+            case Node\Stmt\ClassMethod::class:
+                /** @var Node\Stmt\ClassMethod $node */
+                $method = [
+                    'name' => (string)$node->name,
+                    'error' => null
+                ];
+
+                try {
+                    $docComment = $node->getDocComment();
+                    if ($docComment instanceof \PhpParser\Comment) {
+                        $this->docBlockFactory->create($docComment->getText());
+                    }
+                } catch (\Throwable $e) {
+                    $this->hasErrors = true;
+                    $method['error'] = $e->getMessage();
+                }
+
+                $this->methods[] = $method;
+                break;
+            default:
+                break;
+        }
+
+        return null;
+    }
+
+    /**
+     * Called when leaving a node.
+     *
+     * Return value semantics:
+     *  * null
+     *        => $node stays as-is
+     *  * NodeTraverser::REMOVE_NODE
+     *        => $node is removed from the parent array
+     *  * NodeTraverser::STOP_TRAVERSAL
+     *        => Traversal is aborted. $node stays as-is
+     *  * array (of Nodes)
+     *        => The return value is merged into the parent array (at the position of the $node)
+     *  * otherwise
+     *        => $node is set to the return value
+     *
+     * @param Node $node Node
+     *
+     * @return int|Node|Node[]|null Replacement node (or special return value)
+     */
+    public function leaveNode(Node $node)
+    {
+        return null;
+    }
+
+    /**
+     * Called once after traversal.
+     *
+     * Return value semantics:
+     *  * null:      $nodes stays as-is
+     *  * otherwise: $nodes is set to the return value
+     *
+     * @param Node[] $nodes Array of nodes
+     *
+     * @return Node[]|null Array of nodes
+     */
+    public function afterTraverse(array $nodes)
+    {
+        return null;
+    }
+}
+
+$parser = (new ParserFactory)->create(ParserFactory::ONLY_PHP7);
+
+$finder = new Symfony\Component\Finder\Finder();
+$finder->files()
+    ->in(__DIR__ . '/../../typo3/sysext/*/Classes/')
+    ->in(__DIR__ . '/../../typo3/sysext/*/Tests/')
+    ->name('/\.php$/')
+//    ->notName('ServiceProviderRegistry.php')
+;
+
+$output = new ConsoleOutput();
+
+$errors = [];
+foreach ($finder as $file) {
+    try {
+        $ast = $parser->parse($file->getContents());
+    } catch (Error $error) {
+        $output->writeln('<error>Parse error: ' . $error->getMessage() . '</error>');
+        exit(1);
+    }
+
+    $visitor = new NodeVisitor();
+
+    $traverser = new NodeTraverser();
+    $traverser->addVisitor($visitor);
+
+    $ast = $traverser->traverse($ast);
+
+    if ($visitor->className === null || $visitor->namespace === null) {
+        // only process files that contain classes for now
+        continue;
+    }
+
+    if ($visitor->hasErrors) {
+        $errors[$file->getRealPath()]['fqcn'] = $visitor->namespace . '\\' . $visitor->className;
+
+        if ($visitor->classCommentError !== null) {
+            $errors[$file->getRealPath()]['class'] = $visitor->classCommentError;
+        }
+
+        foreach ($visitor->properties as $property) {
+            if (empty($property['error'])) {
+                continue;
+            }
+
+            $errors[$file->getRealPath()]['properties'][$property['name']] = $property['error'];
+        }
+
+        foreach ($visitor->methods as $method) {
+            if (empty($method['error'])) {
+                continue;
+            }
+
+            $errors[$file->getRealPath()]['methods'][$method['name']] = $method['error'];
+        }
+
+        $output->write('<error>F</error>');
+    } else {
+        $output->write('<fg=green>.</>');
+    }
+}
+
+$output->writeln('');
+
+if (!empty($errors)) {
+    foreach ($errors as $file => $errorsInFile) {
+        $output->writeln('');
+        $output->writeln('');
+        $output->writeln('<error>' . $file . '</error>');
+        $output->writeln('</>');
+
+        if (isset($errorsInFile['class'])) {
+            $table = new \Symfony\Component\Console\Helper\Table($output);
+            $table->setHeaders(['Class', 'Errors']);
+            $table->addRow([$errorsInFile['fqcn'], $errorsInFile['class']]);
+            $table->setStyle('borderless');
+            $table->render();
+        }
+
+        $properties = $errorsInFile['properties'] ?? [];
+        if (count($properties)) {
+            $table = new \Symfony\Component\Console\Helper\Table($output);
+            $table->setHeaders(['Properties', 'Errors']);
+            foreach ($properties as $propertyName => $error) {
+                $table->addRow([$errorsInFile['fqcn'] . '::' . $propertyName, $error]);
+            }
+            $table->setStyle('borderless');
+            $table->render();
+        }
+
+        $methods = $errorsInFile['methods'] ?? [];
+        if (count($methods)) {
+            $table = new \Symfony\Component\Console\Helper\Table($output);
+            $table->setHeaders(['Methods', 'Errors']);
+            foreach ($methods as $methodName => $error) {
+                $table->addRow([$errorsInFile['fqcn'] . '::' . $methodName . '()', $error]);
+            }
+            $table->setStyle('borderless');
+            $table->render();
+        }
+    }
+    exit(1);
+}
+
+exit(0);
diff --git a/Build/bamboo/src/main/java/core/AbstractCoreSpec.java b/Build/bamboo/src/main/java/core/AbstractCoreSpec.java
index 9100f931fe59432b9036b3f623c9d248d5ed0abe..b71b75c253721a1b5e4b1b285eab72b5bdd1522c 100644
--- a/Build/bamboo/src/main/java/core/AbstractCoreSpec.java
+++ b/Build/bamboo/src/main/java/core/AbstractCoreSpec.java
@@ -864,6 +864,48 @@ abstract public class AbstractCoreSpec {
             .cleanWorkingDirectory(true);
     }
 
+    /**
+     * Job with integration test checking for valid php doc blocks
+     *
+     * @param int stageNumber
+     * @param String requirementIdentifier
+     * @param Task composerTask
+     * @param Boolean isSecurity
+     */
+    protected Job getJobIntegrationDocBlocks(int stageNumber, String requirementIdentifier, Task composerTask, Boolean isSecurity) {
+        return new Job("Integration doc blocks " + stageNumber, new BambooKey("IDB" + stageNumber))
+            .description("Check doc blocks by executing Build/Scripts/docBlockChecker.php script")
+            .pluginConfigurations(this.getDefaultJobPluginConfiguration())
+            .tasks(
+                this.getTaskGitCloneRepository(),
+                this.getTaskGitCherryPick(isSecurity),
+                this.getTaskStopDanglingContainers(),
+                composerTask,
+                new ScriptTask()
+                    .description("Execute doc block check script")
+                    .interpreter(ScriptTaskProperties.Interpreter.BINSH_OR_CMDEXE)
+                    .inlineBody(
+                        this.getScriptTaskBashInlineBody() +
+                        "function dockBlockChecker() {\n" +
+                        "    docker run \\\n" +
+                        "        -u ${HOST_UID} \\\n" +
+                        "        -v /bamboo-data/${BAMBOO_COMPOSE_PROJECT_NAME}/passwd:/etc/passwd \\\n" +
+                        "        -v ${BAMBOO_COMPOSE_PROJECT_NAME}_bamboo-data:/srv/bamboo/xml-data/build-dir/ \\\n" +
+                        "        --name ${BAMBOO_COMPOSE_PROJECT_NAME}sib_adhoc \\\n" +
+                        "        --rm \\\n" +
+                        "        typo3gmbh/" + requirementIdentifier.toLowerCase() + ":latest \\\n" +
+                        "        bin/bash -c \"cd ${PWD}; ./Build/Scripts/docBlockChecker.php $*\"\n" +
+                        "}\n" +
+                        "\n" +
+                        "dockBlockChecker"
+                    )
+            )
+            .requirements(
+                this.getRequirementDocker10()
+            )
+            .cleanWorkingDirectory(true);
+    }
+
     /**
      * Job with various smaller script tests
      *
diff --git a/Build/bamboo/src/main/java/core/NightlySpec.java b/Build/bamboo/src/main/java/core/NightlySpec.java
index c626ff7b568e6a7b344afb34fd36dc31b3aac33f..33c1d18661ec13f8e8e842229c8eefc1dd3a0e1c 100644
--- a/Build/bamboo/src/main/java/core/NightlySpec.java
+++ b/Build/bamboo/src/main/java/core/NightlySpec.java
@@ -94,6 +94,7 @@ public class NightlySpec extends AbstractCoreSpec {
 
         jobsMainStage.add(this.getJobCglCheckFullCore(0, "PHP72", this.getTaskComposerInstall("PHP72"), false));
 
+        jobsMainStage.add(this.getJobIntegrationDocBlocks(0, "PHP72", this.getTaskComposerInstall("PHP72"), false));
         jobsMainStage.add(this.getJobIntegrationAnnotations(0, "PHP72", this.getTaskComposerInstall("PHP72"), false));
 
         jobsMainStage.add(this.getJobIntegrationVarious(0, "PHP72", this.getTaskComposerInstall("PHP72"), false));
@@ -140,6 +141,7 @@ public class NightlySpec extends AbstractCoreSpec {
 
         jobsComposerMaxStage.add(this.getJobCglCheckFullCore(1, "PHP72", this.getTaskComposerUpdateMax("PHP72"), false));
 
+        jobsComposerMaxStage.add(this.getJobIntegrationDocBlocks(1, "PHP72", this.getTaskComposerUpdateMax("PHP72"), false));
         jobsComposerMaxStage.add(this.getJobIntegrationAnnotations(1, "PHP72", this.getTaskComposerUpdateMax("PHP72"), false));
 
         jobsComposerMaxStage.add(this.getJobIntegrationVarious(1, "PHP72", this.getTaskComposerUpdateMax("PHP72"), false));
@@ -182,6 +184,7 @@ public class NightlySpec extends AbstractCoreSpec {
 
         jobsComposerMinStage.add(this.getJobCglCheckFullCore(2, "PHP72", this.getTaskComposerUpdateMin("PHP72"), false));
 
+        jobsComposerMinStage.add(this.getJobIntegrationDocBlocks(2, "PHP72", this.getTaskComposerUpdateMin("PHP72"), false));
         jobsComposerMinStage.add(this.getJobIntegrationAnnotations(2, "PHP72", this.getTaskComposerUpdateMin("PHP72"), false));
 
         jobsComposerMinStage.add(this.getJobIntegrationVarious(2, "PHP72", this.getTaskComposerUpdateMin("PHP72"), false));
diff --git a/Build/bamboo/src/main/java/core/PreMergeSpec.java b/Build/bamboo/src/main/java/core/PreMergeSpec.java
index 3c3190b37e4b971dab9abec42e7e8204a8bfb3b9..9045ddfb27048e5d6986b33242d7bf3525c68b5d 100644
--- a/Build/bamboo/src/main/java/core/PreMergeSpec.java
+++ b/Build/bamboo/src/main/java/core/PreMergeSpec.java
@@ -94,6 +94,7 @@ public class PreMergeSpec extends AbstractCoreSpec {
 
         jobsMainStage.addAll(this.getJobsAcceptanceTestsBackendMysql(0, this.numberOfAcceptanceTestJobs, "PHP73", this.getTaskComposerInstall("PHP73"), false));
 
+        jobsMainStage.add(this.getJobIntegrationDocBlocks(0, "PHP72", this.getTaskComposerInstall("PHP72"), false));
         jobsMainStage.add(this.getJobIntegrationAnnotations(0, "PHP72", this.getTaskComposerInstall("PHP72"), false));
 
         jobsMainStage.add(this.getJobIntegrationVarious(0, "PHP72", this.getTaskComposerInstall("PHP72"), false));
diff --git a/Build/bamboo/src/main/java/core/SecuritySpec.java b/Build/bamboo/src/main/java/core/SecuritySpec.java
index 53f89f9da17a2523a90ac23086c52b712ef23fe0..a7fe96e0dd60dade7fbea53d0ecf22e77adc27d9 100644
--- a/Build/bamboo/src/main/java/core/SecuritySpec.java
+++ b/Build/bamboo/src/main/java/core/SecuritySpec.java
@@ -94,6 +94,7 @@ public class SecuritySpec extends AbstractCoreSpec {
 
         jobsMainStage.addAll(this.getJobsAcceptanceTestsBackendMysql(0, this.numberOfAcceptanceTestJobs, "PHP73", this.getTaskComposerInstall("PHP73"), true));
 
+        jobsMainStage.add(this.getJobIntegrationDocBlocks(0, "PHP72", this.getTaskComposerInstall("PHP72"), false));
         jobsMainStage.add(this.getJobIntegrationAnnotations(0, "PHP72", this.getTaskComposerInstall("PHP72"), true));
 
         jobsMainStage.add(this.getJobIntegrationVarious(0, "PHP72", this.getTaskComposerInstall("PHP72"), true));
diff --git a/typo3/sysext/backend/Classes/Template/DocumentTemplate.php b/typo3/sysext/backend/Classes/Template/DocumentTemplate.php
index 1f023daad5d01107e262e3f1aca4aaba292e3f06..25bc1f2a182b85dcbafeee2bd38b8813863e2568 100644
--- a/typo3/sysext/backend/Classes/Template/DocumentTemplate.php
+++ b/typo3/sysext/backend/Classes/Template/DocumentTemplate.php
@@ -351,7 +351,6 @@ function jumpToUrl(URL) {
      *
      * @param string $thisLocation URL to "this location" / current script
      * @return string Urls are returned as JavaScript variables T3_RETURN_URL and T3_THIS_LOCATION
-     * @see typo3/db_list.php
      */
     public function redirectUrls($thisLocation = '')
     {
diff --git a/typo3/sysext/backend/Classes/Template/ModuleTemplate.php b/typo3/sysext/backend/Classes/Template/ModuleTemplate.php
index 6b5a98fb9a54f7c0ad2e9c0f59c70cbb20ec1233..145530a401a11b050ecbb0e690cc97a473ad0b54 100644
--- a/typo3/sysext/backend/Classes/Template/ModuleTemplate.php
+++ b/typo3/sysext/backend/Classes/Template/ModuleTemplate.php
@@ -637,7 +637,6 @@ class ModuleTemplate
      *
      * @param string $thisLocation URL to "this location" / current script
      * @return string Urls are returned as JavaScript variables T3_RETURN_URL and T3_THIS_LOCATION
-     * @see typo3/db_list.php
      * @internal
      */
     public function redirectUrls($thisLocation = '')
diff --git a/typo3/sysext/backend/Classes/Utility/BackendUtility.php b/typo3/sysext/backend/Classes/Utility/BackendUtility.php
index 7ee5f8af36fae337ae415ff94fcc40150efbdb59..bb1cd7c7da9a2e08cc60a8a7501a5ed78b509366 100644
--- a/typo3/sysext/backend/Classes/Utility/BackendUtility.php
+++ b/typo3/sysext/backend/Classes/Utility/BackendUtility.php
@@ -3061,7 +3061,8 @@ class BackendUtility
      * @param int $pid Record pid, could be negative then pointing to a record from same table whose pid to find and return
      * @return int
      * @internal
-     * @see \TYPO3\CMS\Core\DataHandling\DataHandler::copyRecord(), getTSCpid()
+     * @see \TYPO3\CMS\Core\DataHandling\DataHandler::copyRecord()
+     * @see \TYPO3\CMS\Backend\Utility\BackendUtility::getTSCpid()
      */
     public static function getTSconfig_pidValue($table, $uid, $pid)
     {
@@ -3130,7 +3131,8 @@ class BackendUtility
      * @return array Array of two ints; first is the REAL PID of a record and if its a new record negative values are resolved to the true PID,
      * second value is the PID value for TSconfig (uid if table is pages, otherwise the pid)
      * @internal
-     * @see \TYPO3\CMS\Core\DataHandling\DataHandler::setHistory(), \TYPO3\CMS\Core\DataHandling\DataHandler::process_datamap()
+     * @see \TYPO3\CMS\Core\DataHandling\DataHandler::setHistory()
+     * @see \TYPO3\CMS\Core\DataHandling\DataHandler::process_datamap()
      */
     public static function getTSCpid($table, $uid, $pid)
     {
diff --git a/typo3/sysext/belog/Classes/Domain/Repository/LogEntryRepository.php b/typo3/sysext/belog/Classes/Domain/Repository/LogEntryRepository.php
index c7add3beb9792c20c5ae9aadc07b0c6565a2d1a0..fd2989e8f5d9f593e2a22536ed33f74e81f9db83 100644
--- a/typo3/sysext/belog/Classes/Domain/Repository/LogEntryRepository.php
+++ b/typo3/sysext/belog/Classes/Domain/Repository/LogEntryRepository.php
@@ -47,7 +47,7 @@ class LogEntryRepository extends \TYPO3\CMS\Extbase\Persistence\Repository
      * Finds all log entries that match all given constraints.
      *
      * @param \TYPO3\CMS\Belog\Domain\Model\Constraint $constraint
-     * @return \TYPO3\CMS\Extbase\Persistence\QueryResultInterface<\TYPO3\CMS\Belog\Domain\Model\LogEntry>
+     * @return \TYPO3\CMS\Extbase\Persistence\QueryResultInterface
      */
     public function findByConstraint(\TYPO3\CMS\Belog\Domain\Model\Constraint $constraint)
     {
@@ -66,7 +66,7 @@ class LogEntryRepository extends \TYPO3\CMS\Extbase\Persistence\Repository
      *
      * @param \TYPO3\CMS\Extbase\Persistence\QueryInterface $query
      * @param \TYPO3\CMS\Belog\Domain\Model\Constraint $constraint
-     * @return array<\TYPO3\CMS\Extbase\Persistence\Generic\Qom\ConstraintInterface>
+     * @return array|\TYPO3\CMS\Extbase\Persistence\Generic\Qom\ConstraintInterface[]
      */
     protected function createQueryConstraints(\TYPO3\CMS\Extbase\Persistence\QueryInterface $query, \TYPO3\CMS\Belog\Domain\Model\Constraint $constraint)
     {
diff --git a/typo3/sysext/beuser/Classes/Domain/Repository/BackendUserRepository.php b/typo3/sysext/beuser/Classes/Domain/Repository/BackendUserRepository.php
index c1abfae3ffaf057fbd9122763ec9f51640609906..b834b1b1b144469f27449a586e3d4969e9400228 100644
--- a/typo3/sysext/beuser/Classes/Domain/Repository/BackendUserRepository.php
+++ b/typo3/sysext/beuser/Classes/Domain/Repository/BackendUserRepository.php
@@ -34,7 +34,7 @@ class BackendUserRepository extends BackendUserGroupRepository
      * Finds Backend Users on a given list of uids
      *
      * @param array $uidList
-     * @return \TYPO3\CMS\Extbase\Persistence\Generic\QueryResult<\TYPO3\CMS\Beuser\Domain\Model\BackendUser>
+     * @return \TYPO3\CMS\Extbase\Persistence\Generic\QueryResult
      */
     public function findByUidList(array $uidList)
     {
@@ -49,7 +49,7 @@ class BackendUserRepository extends BackendUserGroupRepository
      * Find Backend Users matching to Demand object properties
      *
      * @param Demand $demand
-     * @return \TYPO3\CMS\Extbase\Persistence\Generic\QueryResult<\TYPO3\CMS\Beuser\Domain\Model\BackendUser>
+     * @return \TYPO3\CMS\Extbase\Persistence\Generic\QueryResult
      */
     public function findDemanded(Demand $demand)
     {
@@ -113,7 +113,7 @@ class BackendUserRepository extends BackendUserGroupRepository
     /**
      * Find Backend Users currently online
      *
-     * @return \TYPO3\CMS\Extbase\Persistence\Generic\QueryResult<\TYPO3\CMS\Beuser\Domain\Model\BackendUser>
+     * @return \TYPO3\CMS\Extbase\Persistence\Generic\QueryResult
      */
     public function findOnline()
     {
diff --git a/typo3/sysext/core/Classes/Authentication/AuthenticationService.php b/typo3/sysext/core/Classes/Authentication/AuthenticationService.php
index 45e4f24889d753dc25b859f498c2b355e1b8252f..aa5c782cabf0afbfd64e7f7cf3e714082db4bbf0 100644
--- a/typo3/sysext/core/Classes/Authentication/AuthenticationService.php
+++ b/typo3/sysext/core/Classes/Authentication/AuthenticationService.php
@@ -349,7 +349,7 @@ class AuthenticationService extends AbstractAuthenticationService
      * parameters. The syntax is the same as for sprintf()
      *
      * @param string $message Message to output
-     * @param array<int, mixed> $params
+     * @param array|mixed[] $params
      */
     protected function writeLogMessage(string $message, ...$params): void
     {
diff --git a/typo3/sysext/core/Classes/Authentication/BackendUserAuthentication.php b/typo3/sysext/core/Classes/Authentication/BackendUserAuthentication.php
index e282fd8eb731480d8ddb836d5489b2b8e6713ca6..0cb7c0307aa5fa107bfd34ca1dc0676370a371be 100644
--- a/typo3/sysext/core/Classes/Authentication/BackendUserAuthentication.php
+++ b/typo3/sysext/core/Classes/Authentication/BackendUserAuthentication.php
@@ -1927,7 +1927,7 @@ class BackendUserAuthentication extends AbstractUserAuthentication
      * of the user is used.
      *
      * @return \TYPO3\CMS\Core\Resource\Folder|null
-     * @see \TYPO3\CMS\Core\Authentication\BackendUserAuthentication::getDefaultUploadFolder();
+     * @see \TYPO3\CMS\Core\Authentication\BackendUserAuthentication::getDefaultUploadFolder()
      */
     public function getDefaultUploadTemporaryFolder()
     {
diff --git a/typo3/sysext/core/Classes/DataHandling/DataHandler.php b/typo3/sysext/core/Classes/DataHandling/DataHandler.php
index 8aa9327f31ed4feaad6972aadc7c6b17e32b885a..2dc95f2841e27b0afb43469b5324c609ba5f5d1a 100644
--- a/typo3/sysext/core/Classes/DataHandling/DataHandler.php
+++ b/typo3/sysext/core/Classes/DataHandling/DataHandler.php
@@ -1807,7 +1807,8 @@ class DataHandler implements LoggerAwareInterface
      * @param string $field Field name
      * @param array $incomingFieldArray the fields being explicitly set by the outside (unlike $fieldArray) for the record
      * @return array $res The result array. The processed value (if any!) is set in the "value" key.
-     * @see SlugEnricher, SlugHelper
+     * @see SlugEnricher
+     * @see SlugHelper
      */
     protected function checkValueForSlug(string $value, array $tcaFieldConf, string $table, $id, int $realPid, string $field, array $incomingFieldArray = []): array
     {
@@ -3738,7 +3739,8 @@ class DataHandler implements LoggerAwareInterface
      * @param string $_3 Not used.
      * @param array $workspaceOptions
      * @return array Result array with key "value" containing the value of the processing.
-     * @see copyRecord(), checkValue_flex_procInData_travDS()
+     * @see copyRecord()
+     * @see checkValue_flex_procInData_travDS()
      */
     public function copyRecord_flexFormCallBack($pParams, $dsConf, $dataValue, $_1, $_2, $_3, $workspaceOptions)
     {
@@ -5288,7 +5290,8 @@ class DataHandler implements LoggerAwareInterface
      * @param string $dataValue_ext1 Not used.
      * @param string $dataValue_ext2 Not used.
      * @param string $path Path in flexforms
-     * @see version_remapMMForVersionSwap(), checkValue_flex_procInData_travDS()
+     * @see version_remapMMForVersionSwap()
+     * @see checkValue_flex_procInData_travDS()
      */
     public function version_remapMMForVersionSwap_flexFormCallBack($pParams, $dsConf, $dataValue, $dataValue_ext1, $dataValue_ext2, $path)
     {
@@ -5429,7 +5432,8 @@ class DataHandler implements LoggerAwareInterface
      * @param string $dataValue_ext1 Not used
      * @param string $dataValue_ext2 Not used
      * @return array Array where the "value" key carries the value.
-     * @see checkValue_flex_procInData_travDS(), remapListedDBRecords()
+     * @see checkValue_flex_procInData_travDS()
+     * @see remapListedDBRecords()
      */
     public function remapListedDBRecords_flexFormCallBack($pParams, $dsConf, $dataValue, $dataValue_ext1, $dataValue_ext2)
     {
@@ -6659,7 +6663,8 @@ class DataHandler implements LoggerAwareInterface
      * @param array $fieldArray Array of field=>value pairs to insert/update
      * @param string $action Action, for logging only.
      * @return array|null Selected row
-     * @see insertDB(), updateDB()
+     * @see insertDB()
+     * @see updateDB()
      */
     public function checkStoredRecord($table, $id, $fieldArray, $action)
     {
@@ -7236,7 +7241,8 @@ class DataHandler implements LoggerAwareInterface
      *
      * @param string $string List of pMap strings
      * @return int Integer mask
-     * @see setTSconfigPermissions(), newFieldArray()
+     * @see setTSconfigPermissions()
+     * @see newFieldArray()
      */
     public function assemblePermissions($string)
     {
diff --git a/typo3/sysext/core/Classes/DataHandling/SlugEnricher.php b/typo3/sysext/core/Classes/DataHandling/SlugEnricher.php
index f43657cc8fd15ef9e528cafcb46524896852cee1..9f43a5adf585e73870fd6e9c8b042290e1c4e9ec 100644
--- a/typo3/sysext/core/Classes/DataHandling/SlugEnricher.php
+++ b/typo3/sysext/core/Classes/DataHandling/SlugEnricher.php
@@ -24,7 +24,8 @@ use TYPO3\CMS\Core\Utility\MathUtility;
  * process to create a new slug. Fields having `null` as value are ignored
  * and can be used to by-pass implicit slug initialization.
  *
- * @see DataHandler::fillInFieldArray(), DataHandler::checkValueForSlug()
+ * @see DataHandler::fillInFieldArray()
+ * @see DataHandler::checkValueForSlug()
  */
 class SlugEnricher
 {
diff --git a/typo3/sysext/core/Classes/Database/Query/Expression/ExpressionBuilder.php b/typo3/sysext/core/Classes/Database/Query/Expression/ExpressionBuilder.php
index 4e273a6bfe6fa3d2ffb98e2e39faf92816699acd..b050500617aa849e50db905ba83f0611a53d9760 100644
--- a/typo3/sysext/core/Classes/Database/Query/Expression/ExpressionBuilder.php
+++ b/typo3/sysext/core/Classes/Database/Query/Expression/ExpressionBuilder.php
@@ -62,7 +62,7 @@ class ExpressionBuilder
     /**
      * Creates a conjunction of the given boolean expressions
      *
-     * @param mixed,... $expressions Optional clause. Requires at least one defined when converting to string.
+     * @param mixed $expressions Optional clause. Requires at least one defined when converting to string.
      *
      * @return CompositeExpression
      */
@@ -74,7 +74,7 @@ class ExpressionBuilder
     /**
      * Creates a disjunction of the given boolean expressions.
      *
-     * @param mixed,... $expressions Optional clause. Requires at least one defined when converting to string.
+     * @param mixed $expressions Optional clause. Requires at least one defined when converting to string.
      *
      * @return CompositeExpression
      */
diff --git a/typo3/sysext/core/Classes/Database/Query/QueryBuilder.php b/typo3/sysext/core/Classes/Database/Query/QueryBuilder.php
index 6a9aebc95346458b897c382722e0cb7fd01b639a..143ce158c75e3a8b770ee52e2921e3985ccbbec2 100644
--- a/typo3/sysext/core/Classes/Database/Query/QueryBuilder.php
+++ b/typo3/sysext/core/Classes/Database/Query/QueryBuilder.php
@@ -624,7 +624,7 @@ class QueryBuilder
      * Specifies one or more restrictions to the query result.
      * Replaces any previously specified restrictions, if any.
      *
-     * @param mixed,... $predicates
+     * @param mixed $predicates
      * @return QueryBuilder This QueryBuilder instance.
      */
     public function where(...$predicates): QueryBuilder
@@ -638,7 +638,7 @@ class QueryBuilder
      * Adds one or more restrictions to the query results, forming a logical
      * conjunction with any previously specified restrictions.
      *
-     * @param mixed,... $where The query restrictions.
+     * @param mixed $where The query restrictions.
      *
      * @return QueryBuilder This QueryBuilder instance.
      *
@@ -655,7 +655,7 @@ class QueryBuilder
      * Adds one or more restrictions to the query results, forming a logical
      * disjunction with any previously specified restrictions.
      *
-     * @param mixed,... $where The WHERE statement.
+     * @param mixed $where The WHERE statement.
      *
      * @return QueryBuilder This QueryBuilder instance.
      *
@@ -672,7 +672,7 @@ class QueryBuilder
      * Specifies a grouping over the results of the query.
      * Replaces any previously specified groupings, if any.
      *
-     * @param mixed,... $groupBy The grouping expression.
+     * @param mixed $groupBy The grouping expression.
      *
      * @return QueryBuilder This QueryBuilder instance.
      */
@@ -686,7 +686,7 @@ class QueryBuilder
     /**
      * Adds a grouping expression to the query.
      *
-     * @param mixed,... $groupBy The grouping expression.
+     * @param mixed $groupBy The grouping expression.
      *
      * @return QueryBuilder This QueryBuilder instance.
      */
@@ -742,7 +742,7 @@ class QueryBuilder
      * Specifies a restriction over the groups of the query.
      * Replaces any previous having restrictions, if any.
      *
-     * @param mixed,... $having The restriction over the groups.
+     * @param mixed $having The restriction over the groups.
      *
      * @return QueryBuilder This QueryBuilder instance.
      */
@@ -756,7 +756,7 @@ class QueryBuilder
      * Adds a restriction over the groups of the query, forming a logical
      * conjunction with any existing having restrictions.
      *
-     * @param mixed,... $having The restriction to append.
+     * @param mixed $having The restriction to append.
      *
      * @return QueryBuilder This QueryBuilder instance.
      */
@@ -771,7 +771,7 @@ class QueryBuilder
      * Adds a restriction over the groups of the query, forming a logical
      * disjunction with any existing having restrictions.
      *
-     * @param mixed,... $having The restriction to add.
+     * @param mixed $having The restriction to add.
      *
      * @return QueryBuilder This QueryBuilder instance.
      */
diff --git a/typo3/sysext/core/Classes/Database/ReferenceIndex.php b/typo3/sysext/core/Classes/Database/ReferenceIndex.php
index c8134488eec87576e13c7a146ee17ab0a5e02800..1b4828fc9b4a5a67faac385f2f5f174e8a9aed17 100644
--- a/typo3/sysext/core/Classes/Database/ReferenceIndex.php
+++ b/typo3/sysext/core/Classes/Database/ReferenceIndex.php
@@ -95,7 +95,9 @@ class ReferenceIndex implements LoggerAwareInterface
      * This array holds the FlexForm references of a record
      *
      * @var array
-     * @see getRelations(),FlexFormTools::traverseFlexFormXMLData(),getRelations_flexFormCallBack()
+     * @see getRelations()
+     * @see FlexFormTools::traverseFlexFormXMLData()
+     * @see getRelations_flexFormCallBack()
      */
     public $temp_flexRelations = [];
 
@@ -112,7 +114,8 @@ class ReferenceIndex implements LoggerAwareInterface
      * An index of all found references of a single record created in createEntryData() and accumulated in generateRefIndexData()
      *
      * @var array
-     * @see createEntryData(),generateRefIndexData()
+     * @see createEntryData()
+     * @see generateRefIndexData()
      */
     public $relations = [];
 
@@ -175,7 +178,8 @@ class ReferenceIndex implements LoggerAwareInterface
      * Gets the current workspace id
      *
      * @return int
-     * @see updateRefIndexTable(),createEntryData()
+     * @see updateRefIndexTable()
+     * @see createEntryData()
      */
     public function getWorkspaceId()
     {
@@ -690,7 +694,8 @@ class ReferenceIndex implements LoggerAwareInterface
      * @param mixed $dataValue Current value
      * @param array $PA Additional configuration used in calling function
      * @param string $structurePath Path of value in DS structure
-     * @see DataHandler::checkValue_flex_procInData_travDS(),FlexFormTools::traverseFlexFormXMLData()
+     * @see DataHandler::checkValue_flex_procInData_travDS()
+     * @see FlexFormTools::traverseFlexFormXMLData()
      */
     public function getRelations_flexFormCallBack($dsArr, $dataValue, $PA, $structurePath)
     {
diff --git a/typo3/sysext/core/Classes/Database/Schema/Parser/AST/CreateForeignKeyDefinitionItem.php b/typo3/sysext/core/Classes/Database/Schema/Parser/AST/CreateForeignKeyDefinitionItem.php
index e3606a750a11935ada7b52da4aa8b84dd4d5da4d..94d970f702682af54f43a8cd469d2ad90aa42cd7 100644
--- a/typo3/sysext/core/Classes/Database/Schema/Parser/AST/CreateForeignKeyDefinitionItem.php
+++ b/typo3/sysext/core/Classes/Database/Schema/Parser/AST/CreateForeignKeyDefinitionItem.php
@@ -22,7 +22,7 @@ namespace TYPO3\CMS\Core\Database\Schema\Parser\AST;
 class CreateForeignKeyDefinitionItem extends AbstractCreateDefinitionItem
 {
     /**
-     * @var
+     * @var string
      */
     public $indexName = '';
 
diff --git a/typo3/sysext/core/Classes/Database/Schema/Parser/AST/CreateIndexDefinitionItem.php b/typo3/sysext/core/Classes/Database/Schema/Parser/AST/CreateIndexDefinitionItem.php
index cc9448468fd6f78fa5dd918223c733465e4be642..5a792f067b2532d8692d4dcda81d9361fadef241 100644
--- a/typo3/sysext/core/Classes/Database/Schema/Parser/AST/CreateIndexDefinitionItem.php
+++ b/typo3/sysext/core/Classes/Database/Schema/Parser/AST/CreateIndexDefinitionItem.php
@@ -22,7 +22,7 @@ namespace TYPO3\CMS\Core\Database\Schema\Parser\AST;
 class CreateIndexDefinitionItem extends AbstractCreateDefinitionItem
 {
     /**
-     * @var
+     * @var string
      */
     public $indexName = '';
 
diff --git a/typo3/sysext/core/Classes/Database/SoftReferenceIndex.php b/typo3/sysext/core/Classes/Database/SoftReferenceIndex.php
index 8301be88759fc47fa54ac3cd45061922a310d5e3..e0c09112cfd3a34abc793f89b142e94434451398 100644
--- a/typo3/sysext/core/Classes/Database/SoftReferenceIndex.php
+++ b/typo3/sysext/core/Classes/Database/SoftReferenceIndex.php
@@ -148,7 +148,8 @@ class SoftReferenceIndex implements SingletonInterface
      * @param string $content The input content to analyze
      * @param array $spParams Parameters set for the softref parser key in TCA/columns. value "linkList" will split the string by comma before processing.
      * @return array Result array on positive matches, see description above. Otherwise FALSE
-     * @see \TYPO3\CMS\Frontend\ContentObject::typolink(), getTypoLinkParts()
+     * @see \TYPO3\CMS\Frontend\ContentObject::typolink()
+     * @see getTypoLinkParts()
      */
     public function findRef_typolink($content, $spParams)
     {
@@ -183,7 +184,8 @@ class SoftReferenceIndex implements SingletonInterface
      *
      * @param string $content The input content to analyze
      * @return array Result array on positive matches, see description above. Otherwise FALSE
-     * @see \TYPO3\CMS\Frontend\ContentObject::typolink(), getTypoLinkParts()
+     * @see \TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::typolink()
+     * @see getTypoLinkParts()
      */
     public function findRef_typolink_tag($content)
     {
@@ -363,7 +365,8 @@ class SoftReferenceIndex implements SingletonInterface
      *
      * @param string $typolinkValue TypoLink value.
      * @return array Array with the properties of the input link specified. The key "LINK_TYPE" will reveal the type. If that is blank it could not be determined.
-     * @see \TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::typolink(), setTypoLinkPartsElement()
+     * @see \TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::typolink()
+     * @see setTypoLinkPartsElement()
      */
     public function getTypoLinkParts($typolinkValue)
     {
diff --git a/typo3/sysext/core/Classes/DependencyInjection/ServiceProviderRegistry.php b/typo3/sysext/core/Classes/DependencyInjection/ServiceProviderRegistry.php
index 56e451f0bb6efbba2bc458e92466a2cdda223b83..25202ca8a075c7209ad2e29364f8a28603f0fc36 100644
--- a/typo3/sysext/core/Classes/DependencyInjection/ServiceProviderRegistry.php
+++ b/typo3/sysext/core/Classes/DependencyInjection/ServiceProviderRegistry.php
@@ -40,7 +40,7 @@ class ServiceProviderRegistry implements \IteratorAggregate
     /**
      * The array with constructed values.
      *
-     * @var array<packageKey, ServiceProviderInterface>
+     * @var array An array<packageKey, ServiceProviderInterface>
      */
     private $instances;
 
diff --git a/typo3/sysext/core/Classes/Domain/Repository/PageRepository.php b/typo3/sysext/core/Classes/Domain/Repository/PageRepository.php
index 9fa8413a0feeb39b677277f06c04bbe4477258a1..90d68847b63eb1f54f6243f2ffcb2d4b3ed7aab6 100644
--- a/typo3/sysext/core/Classes/Domain/Repository/PageRepository.php
+++ b/typo3/sysext/core/Classes/Domain/Repository/PageRepository.php
@@ -669,7 +669,8 @@ class PageRepository implements LoggerAwareInterface
      * @param string $additionalWhereClause Optional additional where clauses. Like "AND title like '%blabla%'" for instance.
      * @param bool $checkShortcuts Check if shortcuts exist, checks by default
      * @return array Array with key/value pairs; keys are page-uid numbers. values are the corresponding page records (with overlaid localized fields, if any)
-     * @see self::getPageShortcut(), \TYPO3\CMS\Frontend\ContentObject\Menu\AbstractMenuContentObject::makeMenu()
+     * @see getPageShortcut()
+     * @see \TYPO3\CMS\Frontend\ContentObject\Menu\AbstractMenuContentObject::makeMenu()
      */
     public function getMenu($pageId, $fields = '*', $sortField = 'sorting', $additionalWhereClause = '', $checkShortcuts = true)
     {
@@ -1007,7 +1008,7 @@ class PageRepository implements LoggerAwareInterface
      * Recursive mount points are not supported by all parts of the core.
      * The usage is discouraged. They may be removed from this method.
      *
-     * @see: https://decisions.typo3.org/t/supporting-or-prohibiting-recursive-mount-points/165/3
+     * @see https://decisions.typo3.org/t/supporting-or-prohibiting-recursive-mount-points/165/3
      *
      * An array will be returned if mount pages are enabled, the correct
      * doktype (7) is set for page and there IS a mount_pid with a valid
@@ -1371,7 +1372,9 @@ class PageRepository implements LoggerAwareInterface
      *
      * @param string $table Table name
      * @param array $rr Record array passed by reference. As minimum, "pid" and "uid" fields must exist! "t3ver_oid" and "t3ver_wsid" is nice and will save you a DB query.
-     * @see BackendUtility::fixVersioningPid(), versionOL(), getRootLine()
+     * @see BackendUtility::fixVersioningPid()
+     * @see versionOL()
+     * @see getRootLine()
      */
     public function fixVersioningPid($table, &$rr)
     {
@@ -1451,7 +1454,8 @@ class PageRepository implements LoggerAwareInterface
      * @param array $row Record array passed by reference. As minimum, the "uid", "pid" and "t3ver_state" fields must exist! The record MAY be set to FALSE in which case the calling function should act as if the record is forbidden to access!
      * @param bool $unsetMovePointers If set, the $row is cleared in case it is a move-pointer. This is only for preview of moved records (to remove the record from the original location so it appears only in the new location)
      * @param bool $bypassEnableFieldsCheck Unless this option is TRUE, the $row is unset if enablefields for BOTH the version AND the online record deselects it. This is because when versionOL() is called it is assumed that the online record is already selected with no regards to it's enablefields. However, after looking for a new version the online record enablefields must ALSO be evaluated of course. This is done all by this function!
-     * @see fixVersioningPid(), BackendUtility::workspaceOL()
+     * @see fixVersioningPid()
+     * @see BackendUtility::workspaceOL()
      */
     public function versionOL($table, &$row, $unsetMovePointers = false, $bypassEnableFieldsCheck = false)
     {
diff --git a/typo3/sysext/core/Classes/FormProtection/FormProtectionFactory.php b/typo3/sysext/core/Classes/FormProtection/FormProtectionFactory.php
index 4f4fee5f77d2e261f6df1047a66122153ffd25e9..5c7a76abe8457eda2b2f1333ffdc2818dcfea70a 100644
--- a/typo3/sysext/core/Classes/FormProtection/FormProtectionFactory.php
+++ b/typo3/sysext/core/Classes/FormProtection/FormProtectionFactory.php
@@ -67,7 +67,7 @@ class FormProtectionFactory
      * @param string $classNameOrType Name of a form protection class, or one
      *                                of the pre-defined form protection types:
      *                                frontend, backend, installtool
-     * @param array<int, mixed> $constructorArguments Arguments for the class-constructor
+     * @param array|mixed[] $constructorArguments Arguments for the class-constructor
      * @return \TYPO3\CMS\Core\FormProtection\AbstractFormProtection the requested instance
      */
     public static function get($classNameOrType = 'default', ...$constructorArguments)
@@ -179,7 +179,7 @@ class FormProtectionFactory
      * and stores it internally.
      *
      * @param string $className
-     * @param array<int, mixed> $constructorArguments
+     * @param array|mixed[] $constructorArguments
      * @throws \InvalidArgumentException
      * @return AbstractFormProtection
      */
diff --git a/typo3/sysext/core/Classes/Html/HtmlParser.php b/typo3/sysext/core/Classes/Html/HtmlParser.php
index 8e3cee51ee6401a9716139d6ddf931a6a8879fa5..26b6186a81bdab08028cfecc26df3123bbc92a77 100644
--- a/typo3/sysext/core/Classes/Html/HtmlParser.php
+++ b/typo3/sysext/core/Classes/Html/HtmlParser.php
@@ -46,7 +46,8 @@ class HtmlParser
      * @param string $content HTML-content
      * @param bool $eliminateExtraEndTags If set, excessive end tags are ignored - you should probably set this in most cases.
      * @return array Even numbers in the array are outside the blocks, Odd numbers are block-content.
-     * @see splitTags(), removeFirstAndLastTag()
+     * @see splitTags()
+     * @see removeFirstAndLastTag()
      */
     public function splitIntoBlock($tag, $content, $eliminateExtraEndTags = false)
     {
@@ -152,7 +153,8 @@ class HtmlParser
      * @param string $tag List of tags
      * @param string $content HTML-content
      * @return array Even numbers in the array are outside the blocks, Odd numbers are block-content.
-     * @see splitIntoBlock(), removeFirstAndLastTag()
+     * @see splitIntoBlock()
+     * @see removeFirstAndLastTag()
      */
     public function splitTags($tag, $content)
     {
diff --git a/typo3/sysext/core/Classes/Imaging/GraphicalFunctions.php b/typo3/sysext/core/Classes/Imaging/GraphicalFunctions.php
index b13ce2e7346471b4550b3cc1abdc9e4e25ef7eb2..e5ee9a0dc85542a5737c410b58103df459cc3acd 100644
--- a/typo3/sysext/core/Classes/Imaging/GraphicalFunctions.php
+++ b/typo3/sysext/core/Classes/Imaging/GraphicalFunctions.php
@@ -442,7 +442,8 @@ class GraphicalFunctions
      * @param resource $im GDlib image pointer
      * @param array $conf TypoScript array with configuration for the GIFBUILDER object.
      * @param array $workArea The current working area coordinates.
-     * @see \TYPO3\CMS\Frontend\Imaging\GifBuilder::make(), maskImageOntoImage()
+     * @see \TYPO3\CMS\Frontend\Imaging\GifBuilder::make()
+     * @see maskImageOntoImage()
      */
     public function copyImageOntoImage(&$im, $conf, $workArea)
     {
@@ -722,7 +723,8 @@ class GraphicalFunctions
      * @param array $conf TypoScript array for the TEXT GIFBUILDER object
      * @return array Array with three keys [0]/[1] being x/y and [2] being the bounding box array
      * @internal
-     * @see txtPosition(), \TYPO3\CMS\Frontend\Imaging\GifBuilder::start()
+     * @see txtPosition()
+     * @see \TYPO3\CMS\Frontend\Imaging\GifBuilder::start()
      */
     public function calcBBox($conf)
     {
@@ -805,7 +807,8 @@ class GraphicalFunctions
      * @param array $cords Coordinates for a polygon image map as created by ->calcTextCordsForMap()
      * @param array $conf Configuration for "imgMap." property of a TEXT GIFBUILDER object.
      * @internal
-     * @see makeText(), calcTextCordsForMap()
+     * @see makeText()
+     * @see calcTextCordsForMap()
      */
     public function addToMap($cords, $conf)
     {
@@ -824,7 +827,8 @@ class GraphicalFunctions
      * @param array $conf Configuration for "imgMap." property of a TEXT GIFBUILDER object.
      * @return array
      * @internal
-     * @see makeText(), calcTextCordsForMap()
+     * @see makeText()
+     * @see calcTextCordsForMap()
      */
     public function calcTextCordsForMap($cords, $offset, $conf)
     {
@@ -1303,7 +1307,8 @@ class GraphicalFunctions
      * @param array $conf TypoScript array with configuration for the GIFBUILDER object.
      * @param array $workArea The current working area coordinates.
      * @param array $txtConf TypoScript array with configuration for the associated TEXT GIFBUILDER object.
-     * @see \TYPO3\CMS\Frontend\Imaging\GifBuilder::make(), makeText()
+     * @see \TYPO3\CMS\Frontend\Imaging\GifBuilder::make()
+     * @see makeText()
      */
     public function makeOutline(&$im, $conf, $workArea, $txtConf)
     {
@@ -1361,7 +1366,8 @@ class GraphicalFunctions
      * @param array $conf TypoScript array with configuration for the GIFBUILDER object.
      * @param array $workArea The current working area coordinates.
      * @param array $txtConf TypoScript array with configuration for the associated TEXT GIFBUILDER object.
-     * @see \TYPO3\CMS\Frontend\Imaging\GifBuilder::make(), makeShadow()
+     * @see \TYPO3\CMS\Frontend\Imaging\GifBuilder::make()
+     * @see makeShadow()
      */
     public function makeEmboss(&$im, $conf, $workArea, $txtConf)
     {
@@ -1383,7 +1389,9 @@ class GraphicalFunctions
      * @param array $conf TypoScript array with configuration for the GIFBUILDER object.
      * @param array $workArea The current working area coordinates.
      * @param array $txtConf TypoScript array with configuration for the associated TEXT GIFBUILDER object.
-     * @see \TYPO3\CMS\Frontend\Imaging\GifBuilder::make(), makeText(), makeEmboss()
+     * @see \TYPO3\CMS\Frontend\Imaging\GifBuilder::make()
+     * @see makeText()
+     * @see makeEmboss()
      */
     public function makeShadow(&$im, $conf, $workArea, $txtConf)
     {
@@ -1540,7 +1548,8 @@ class GraphicalFunctions
      *
      * @param resource $im GDlib image pointer
      * @param array $conf TypoScript array with configuration for the GIFBUILDER object.
-     * @see \TYPO3\CMS\Frontend\Imaging\GifBuilder::make(), applyImageMagickToPHPGif()
+     * @see \TYPO3\CMS\Frontend\Imaging\GifBuilder::make()
+     * @see applyImageMagickToPHPGif()
      */
     public function makeEffect(&$im, $conf)
     {
@@ -1633,7 +1642,10 @@ class GraphicalFunctions
      *
      * @param resource $im GDlib image pointer
      * @param array $conf TypoScript array with configuration for the GIFBUILDER object.
-     * @see \TYPO3\CMS\Frontend\Imaging\GifBuilder::make(), autoLevels(), outputLevels(), inputLevels()
+     * @see \TYPO3\CMS\Frontend\Imaging\GifBuilder::make()
+     * @see autoLevels()
+     * @see outputLevels()
+     * @see inputLevels()
      */
     public function adjust(&$im, $conf)
     {
@@ -1875,7 +1887,9 @@ class GraphicalFunctions
      *
      * @param int $factor The sharpening factor, 0-100 (effectively in 10 steps)
      * @return string The sharpening command, eg. " -sharpen 3x4
-     * @see makeText(), IMparams(), v5_blur()
+     * @see makeText()
+     * @see IMparams()
+     * @see v5_blur()
      */
     public function v5_sharpen($factor)
     {
@@ -1894,7 +1908,9 @@ class GraphicalFunctions
      *
      * @param int $factor The blurring factor, 0-100 (effectively in 10 steps)
      * @return string The blurring command, eg. " -blur 3x4
-     * @see makeText(), IMparams(), v5_sharpen()
+     * @see makeText()
+     * @see IMparams()
+     * @see v5_sharpen()
      */
     public function v5_blur($factor)
     {
@@ -1992,7 +2008,9 @@ class GraphicalFunctions
      * @param array $BB BB (Bounding box) array. Not just used for TEXT objects but also for others
      * @return array [0]=x, [1]=y, [2]=w, [3]=h
      * @internal
-     * @see copyGifOntoGif(), makeBox(), crop()
+     * @see copyGifOntoGif()
+     * @see makeBox()
+     * @see crop()
      */
     public function objPosition($conf, $workArea, $BB)
     {
@@ -2048,7 +2066,11 @@ class GraphicalFunctions
      * @param array $options An array with options passed to getImageScale (see this function).
      * @param bool $mustCreate If set, then another image than the input imagefile MUST be returned. Otherwise you can risk that the input image is good enough regarding messures etc and is of course not rendered to a new, temporary file in typo3temp/. But this option will force it to.
      * @return array|null [0]/[1] is w/h, [2] is file extension and [3] is the filename.
-     * @see getImageScale(), typo3/show_item.php, fileList_ext::renderImage(), \TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::getImgResource(), SC_tslib_showpic::show(), maskImageOntoImage(), copyImageOntoImage(), scale()
+     * @see getImageScale()
+     * @see \TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::getImgResource()
+     * @see maskImageOntoImage()
+     * @see copyImageOntoImage()
+     * @see scale()
      */
     public function imageMagickConvert($imagefile, $newExt = '', $w = '', $h = '', $params = '', $frame = '', $options = [], $mustCreate = false)
     {
@@ -2157,7 +2179,8 @@ class GraphicalFunctions
      *
      * @param string $imageFile The image filepath
      * @return array|null Returns an array where [0]/[1] is w/h, [2] is extension and [3] is the filename.
-     * @see imageMagickConvert(), \TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::getImgResource()
+     * @see imageMagickConvert()
+     * @see \TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::getImgResource()
      */
     public function getImageDimensions($imageFile)
     {
@@ -2716,7 +2739,9 @@ class GraphicalFunctions
      * @param string $theImage The filename to write to
      * @param int $quality The image quality (for JPEGs)
      * @return bool The output of either imageGif, imagePng or imageJpeg based on the filename to write
-     * @see maskImageOntoImage(), scale(), output()
+     * @see maskImageOntoImage()
+     * @see scale()
+     * @see output()
      */
     public function ImageWrite($destImg, $theImage, $quality = 0)
     {
diff --git a/typo3/sysext/core/Classes/Page/PageRenderer.php b/typo3/sysext/core/Classes/Page/PageRenderer.php
index 6a8c809df682c2b90fdf016de5865de8aea9de0d..766276555e405d47380388eeeb832df4f235a708 100644
--- a/typo3/sysext/core/Classes/Page/PageRenderer.php
+++ b/typo3/sysext/core/Classes/Page/PageRenderer.php
@@ -1745,7 +1745,7 @@ class PageRenderer implements SingletonInterface
     /**
      * Renders all JavaScript and CSS
      *
-     * @return array<string>
+     * @return array|string[]
      */
     protected function renderJavaScriptAndCss()
     {
@@ -2100,7 +2100,7 @@ class PageRenderer implements SingletonInterface
     /**
      * Render JavaScipt libraries
      *
-     * @return array<string> jsLibs and jsFooterLibs strings
+     * @return array|string[] jsLibs and jsFooterLibs strings
      */
     protected function renderAdditionalJavaScriptLibraries()
     {
@@ -2144,7 +2144,7 @@ class PageRenderer implements SingletonInterface
     /**
      * Render JavaScript files
      *
-     * @return array<string> jsFiles and jsFooterFiles strings
+     * @return array|string[] jsFiles and jsFooterFiles strings
      */
     protected function renderJavaScriptFiles()
     {
@@ -2189,7 +2189,7 @@ class PageRenderer implements SingletonInterface
     /**
      * Render inline JavaScript
      *
-     * @return array<string> jsInline and jsFooterInline string
+     * @return array|string[] jsInline and jsFooterInline string
      */
     protected function renderInlineJavaScript()
     {
diff --git a/typo3/sysext/core/Classes/Resource/Driver/AbstractDriver.php b/typo3/sysext/core/Classes/Resource/Driver/AbstractDriver.php
index ac8e466045adff02bf7e3564f4a639660e582ca8..14afdb0b7e18900a67add9c1085d7426e672b07d 100644
--- a/typo3/sysext/core/Classes/Resource/Driver/AbstractDriver.php
+++ b/typo3/sysext/core/Classes/Resource/Driver/AbstractDriver.php
@@ -25,8 +25,8 @@ abstract class AbstractDriver implements DriverInterface
      * CAPABILITIES
      *******************/
     /**
-     * The capabilities of this driver. See Storage::CAPABILITY_* constants for possible values. This value should be set
-     * in the constructor of derived classes.
+     * The capabilities of this driver. See \TYPO3\CMS\Core\Resource\ResourceStorageInterface::::CAPABILITY_* constants
+     * for possible values. This value should be set in the constructor of derived classes.
      *
      * @var int
      */
@@ -97,7 +97,10 @@ abstract class AbstractDriver implements DriverInterface
      * Returns the capabilities of this driver.
      *
      * @return int
-     * @see Storage::CAPABILITY_* constants
+     * @see \TYPO3\CMS\Core\Resource\ResourceStorageInterface::CAPABILITY_BROWSABLE
+     * @see \TYPO3\CMS\Core\Resource\ResourceStorageInterface::CAPABILITY_PUBLIC
+     * @see \TYPO3\CMS\Core\Resource\ResourceStorageInterface::CAPABILITY_WRITABLE
+     * @see \TYPO3\CMS\Core\Resource\ResourceStorageInterface::CAPABILITY_HIERARCHICAL_IDENTIFIERS
      */
     public function getCapabilities()
     {
diff --git a/typo3/sysext/core/Classes/Resource/ResourceStorage.php b/typo3/sysext/core/Classes/Resource/ResourceStorage.php
index 7fa20d752bdfb6960bf695a3847c766ff3da9f60..d21ee7e02b8b0eebc2ebb2e7801efe614e8df534 100644
--- a/typo3/sysext/core/Classes/Resource/ResourceStorage.php
+++ b/typo3/sysext/core/Classes/Resource/ResourceStorage.php
@@ -303,7 +303,10 @@ class ResourceStorage implements ResourceStorageInterface
      * Returns the capabilities of this storage.
      *
      * @return int
-     * @see CAPABILITY_* constants
+     * @see \TYPO3\CMS\Core\Resource\ResourceStorageInterface::CAPABILITY_BROWSABLE
+     * @see \TYPO3\CMS\Core\Resource\ResourceStorageInterface::CAPABILITY_PUBLIC
+     * @see \TYPO3\CMS\Core\Resource\ResourceStorageInterface::CAPABILITY_WRITABLE
+     * @see \TYPO3\CMS\Core\Resource\ResourceStorageInterface::CAPABILITY_HIERARCHICAL_IDENTIFIERS
      */
     public function getCapabilities()
     {
diff --git a/typo3/sysext/core/Classes/Resource/Search/FileSearchQuery.php b/typo3/sysext/core/Classes/Resource/Search/FileSearchQuery.php
index 042fd271d9036a4625c0ced8890296270610fedb..a0ea59b5b74bb1aa740c70b3e4b5b9e253e4f7b1 100644
--- a/typo3/sysext/core/Classes/Resource/Search/FileSearchQuery.php
+++ b/typo3/sysext/core/Classes/Resource/Search/FileSearchQuery.php
@@ -159,7 +159,7 @@ class FileSearchQuery
      * Can be accessed by subclasses to add further restrictions to the query.
      *
      * @param QueryRestrictionInterface $additionalRestriction
-     * @throws |RuntimeException
+     * @throws \RuntimeException
      */
     public function additionalRestriction(QueryRestrictionInterface $additionalRestriction): void
     {
diff --git a/typo3/sysext/core/Classes/Service/MarkerBasedTemplateService.php b/typo3/sysext/core/Classes/Service/MarkerBasedTemplateService.php
index e2415c4db607d63eb81f955172659891d469761f..7fd2db771c65ddb1fa659cb1456442914b3e16ce 100644
--- a/typo3/sysext/core/Classes/Service/MarkerBasedTemplateService.php
+++ b/typo3/sysext/core/Classes/Service/MarkerBasedTemplateService.php
@@ -191,7 +191,8 @@ class MarkerBasedTemplateService
      * @param bool $deleteUnused If set, all unused marker are deleted.
      *
      * @return string The processed output stream
-     * @see substituteMarker(), substituteMarkerInObject(), TEMPLATE()
+     * @see substituteMarker()
+     * @see substituteMarkerInObject()
      */
     public function substituteMarkerArray($content, $markContentArray, $wrap = '', $uppercase = false, $deleteUnused = false)
     {
@@ -346,7 +347,9 @@ class MarkerBasedTemplateService
      * @param array $subpartContentArray Exactly like markContentArray only is whole subparts substituted and not only a single marker.
      * @param array $wrappedSubpartContentArray An array of arrays with 0/1 keys where the subparts pointed to by the main key is wrapped with the 0/1 value alternating.
      * @return string The output content stream
-     * @see substituteSubpart(), substituteMarker(), substituteMarkerInObject(), TEMPLATE()
+     * @see substituteSubpart()
+     * @see substituteMarker()
+     * @see substituteMarkerInObject()
      */
     public function substituteMarkerArrayCached($content, array $markContentArray = null, array $subpartContentArray = null, array $wrappedSubpartContentArray = null)
     {
diff --git a/typo3/sysext/core/Classes/TimeTracker/TimeTracker.php b/typo3/sysext/core/Classes/TimeTracker/TimeTracker.php
index c2b989aef3798f9c6d5253d29a9008b97a8b27cc..d8249efd688e0c83e818c00df8c92b336ae6c60e 100644
--- a/typo3/sysext/core/Classes/TimeTracker/TimeTracker.php
+++ b/typo3/sysext/core/Classes/TimeTracker/TimeTracker.php
@@ -174,7 +174,8 @@ class TimeTracker implements SingletonInterface
      *
      * @param string $tslabel Label string for the entry, eg. TypoScript property name
      * @param string $value Additional value(?)
-     * @see \TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::cObjGetSingle(), pull()
+     * @see \TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::cObjGetSingle()
+     * @see pull()
      */
     public function push($tslabel, $value = '')
     {
@@ -200,7 +201,8 @@ class TimeTracker implements SingletonInterface
      * Pulls an element from the TypoScript tracking array
      *
      * @param string $content The content string generated within the push/pull part.
-     * @see \TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::cObjGetSingle(), push()
+     * @see \TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::cObjGetSingle()
+     * @see push()
      */
     public function pull($content = '')
     {
@@ -260,7 +262,9 @@ class TimeTracker implements SingletonInterface
     /**
      * Increases the stack pointer
      *
-     * @see decStackPointer(), \TYPO3\CMS\Frontend\Page\PageGenerator::renderContent(), \TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::cObjGetSingle()
+     * @see decStackPointer()
+     * @see \TYPO3\CMS\Frontend\Page\PageGenerator::renderContent()
+     * @see \TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::cObjGetSingle()
      */
     public function incStackPointer()
     {
@@ -274,7 +278,9 @@ class TimeTracker implements SingletonInterface
     /**
      * Decreases the stack pointer
      *
-     * @see incStackPointer(), \TYPO3\CMS\Frontend\Page\PageGenerator::renderContent(), \TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::cObjGetSingle()
+     * @see incStackPointer()
+     * @see \TYPO3\CMS\Frontend\Page\PageGenerator::renderContent()
+     * @see \TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::cObjGetSingle()
      */
     public function decStackPointer()
     {
diff --git a/typo3/sysext/core/Classes/TypoScript/TemplateService.php b/typo3/sysext/core/Classes/TypoScript/TemplateService.php
index 36be16c382adce04fc23d338e56cc868706fcc55..cdbefbc972d8f9ea170330e6543831b463552912 100644
--- a/typo3/sysext/core/Classes/TypoScript/TemplateService.php
+++ b/typo3/sysext/core/Classes/TypoScript/TemplateService.php
@@ -909,7 +909,8 @@ class TemplateService
      *
      * @param array $subrow Static template record/file
      * @return array Returns the input array where the values for keys "config" and "constants" may have been modified with prepended code.
-     * @see addExtensionStatics(), includeStaticTypoScriptSources()
+     * @see addExtensionStatics()
+     * @see includeStaticTypoScriptSources()
      */
     protected function prependStaticExtra($subrow)
     {
@@ -947,7 +948,8 @@ class TemplateService
      * Generates the configuration array by replacing constants and parsing the whole thing.
      * Depends on $this->config and $this->constants to be set prior to this! (done by processTemplate/runThroughTemplates)
      *
-     * @see \TYPO3\CMS\Core\TypoScript\Parser\TypoScriptParser, start()
+     * @see \TYPO3\CMS\Core\TypoScript\Parser\TypoScriptParser
+     * @see start()
      */
     public function generateConfig()
     {
@@ -1064,7 +1066,8 @@ class TemplateService
      * for include instructions and does the inclusion of external TypoScript files
      * if needed.
      *
-     * @see \TYPO3\CMS\Core\TypoScript\Parser\TypoScriptParser, generateConfig()
+     * @see \TYPO3\CMS\Core\TypoScript\Parser\TypoScriptParser
+     * @see generateConfig()
      */
     protected function processIncludes()
     {
@@ -1123,7 +1126,8 @@ class TemplateService
      *
      * @param string $all TypoScript code text string
      * @return string The processed string with all constants found in $this->flatSetup as key/value pairs substituted.
-     * @see generateConfig(), flattenSetup()
+     * @see generateConfig()
+     * @see flattenSetup()
      */
     protected function substituteConstants($all)
     {
diff --git a/typo3/sysext/core/Classes/Utility/ArrayUtility.php b/typo3/sysext/core/Classes/Utility/ArrayUtility.php
index 08de6314e285f086d4f3694c6c44bf5392f7aa70..1d9c9ff658358c8fa0f05c84a77887fa15b5358e 100644
--- a/typo3/sysext/core/Classes/Utility/ArrayUtility.php
+++ b/typo3/sysext/core/Classes/Utility/ArrayUtility.php
@@ -766,7 +766,8 @@ class ArrayUtility
      * @param array $setupArr TypoScript array with numerical array in
      * @param bool $acceptAnyKeys If set, then a value is not required - the properties alone will be enough.
      * @return array An array with all integer properties listed in numeric order.
-     * @see \TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::cObjGet(), \TYPO3\CMS\Frontend\Imaging\GifBuilder
+     * @see \TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::cObjGet()
+     * @see \TYPO3\CMS\Frontend\Imaging\GifBuilder
      */
     public static function filterAndSortByNumericKeys($setupArr, $acceptAnyKeys = false)
     {
diff --git a/typo3/sysext/core/Classes/Utility/GeneralUtility.php b/typo3/sysext/core/Classes/Utility/GeneralUtility.php
index c151b7fac4bc304d92c3bbdfd09337a57cc62203..8374d5ff8441b7039043d5df03063ff028451404 100644
--- a/typo3/sysext/core/Classes/Utility/GeneralUtility.php
+++ b/typo3/sysext/core/Classes/Utility/GeneralUtility.php
@@ -168,7 +168,8 @@ class GeneralUtility
      *
      * @param string $var Optional pointer to value in GET array (basically name of GET var)
      * @return mixed If $var is set it returns the value of $_GET[$var]. If $var is NULL (default), returns $_GET itself. In any case *slashes are stipped from the output!*
-     * @see _POST(), _GP()
+     * @see _POST()
+     * @see _GP()
      */
     public static function _GET($var = null)
     {
@@ -188,7 +189,8 @@ class GeneralUtility
      *
      * @param string $var Optional pointer to value in POST array (basically name of POST var)
      * @return mixed If $var is set it returns the value of $_POST[$var]. If $var is NULL (default), returns $_POST itself. In any case *slashes are stipped from the output!*
-     * @see _GET(), _GP()
+     * @see _GET()
+     * @see _GP()
      */
     public static function _POST($var = null)
     {
@@ -827,7 +829,8 @@ class GeneralUtility
      * @param string $string Input string, eg "123 + 456 / 789 - 4
      * @param string $operators Operators to split by, typically "/+-*
      * @return array Array with operators and operands separated.
-     * @see \TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::calc(), \TYPO3\CMS\Frontend\Imaging\GifBuilder::calcOffset()
+     * @see \TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::calc()
+     * @see \TYPO3\CMS\Frontend\Imaging\GifBuilder::calcOffset()
      */
     public static function splitCalc($string, $operators)
     {
@@ -1539,7 +1542,8 @@ class GeneralUtility
      * @param string $NSprefix The tag-prefix resolve, eg. a namespace like "T3:"
      * @param bool $reportDocTag If set, the document tag will be set in the key "_DOCUMENT_TAG" of the output array
      * @return mixed If the parsing had errors, a string with the error message is returned. Otherwise an array with the content.
-     * @see array2xml(),xml2arrayProcess()
+     * @see array2xml()
+     * @see xml2arrayProcess()
      */
     public static function xml2array($string, $NSprefix = '', $reportDocTag = false)
     {
@@ -3201,7 +3205,8 @@ class GeneralUtility
      *
      * @param string $uploadedFileName The temporary uploaded filename, eg. $_FILES['[upload field name here]']['tmp_name']
      * @return string If a new file was successfully created, return its filename, otherwise blank string.
-     * @see unlink_tempfile(), upload_copy_move()
+     * @see unlink_tempfile()
+     * @see upload_copy_move()
      */
     public static function upload_to_tempfile($uploadedFileName)
     {
@@ -3227,7 +3232,8 @@ class GeneralUtility
      *
      * @param string $uploadedTempFileName absolute file path - must reside within var/ or typo3temp/ folder.
      * @return bool Returns TRUE if the file was unlink()'ed
-     * @see upload_to_tempfile(), tempnam()
+     * @see upload_to_tempfile()
+     * @see tempnam()
      */
     public static function unlink_tempfile($uploadedTempFileName)
     {
@@ -3256,7 +3262,8 @@ class GeneralUtility
      * @param string $filePrefix Prefix for temporary file
      * @param string $fileSuffix Suffix for temporary file, for example a special file extension
      * @return string result from PHP function tempnam() with the temp/var folder prefixed.
-     * @see unlink_tempfile(), upload_to_tempfile()
+     * @see unlink_tempfile()
+     * @see upload_to_tempfile()
      */
     public static function tempnam($filePrefix, $fileSuffix = '')
     {
@@ -3410,7 +3417,7 @@ class GeneralUtility
      * the instance of a specific class.
      *
      * @param string $className name of the class to instantiate, must not be empty and not start with a backslash
-     * @param array<int, mixed> $constructorArguments Arguments for the constructor
+     * @param array|mixed[] $constructorArguments Arguments for the constructor
      * @return object the created instance
      * @throws \InvalidArgumentException if $className is empty or starts with a backslash
      */
@@ -3471,7 +3478,7 @@ class GeneralUtility
      * container.
      *
      * @param string $className name of the class to instantiate
-     * @param array<int, mixed> $constructorArguments Arguments for the constructor
+     * @param array|mixed[] $constructorArguments Arguments for the constructor
      * @return object the created instance
      * @internal
      */
diff --git a/typo3/sysext/core/Classes/Utility/MathUtility.php b/typo3/sysext/core/Classes/Utility/MathUtility.php
index 883c72d3c9f1b67803e65e2c9dcbb824d0e84237..a7f00e0d180e4bf311a325547d72e477816348b4 100644
--- a/typo3/sysext/core/Classes/Utility/MathUtility.php
+++ b/typo3/sysext/core/Classes/Utility/MathUtility.php
@@ -165,7 +165,8 @@ class MathUtility
      *
      * @param string $string Input string, eg "(123 + 456) / 789 - 4
      * @return int Calculated value. Or error string.
-     * @see calculateWithPriorityToAdditionAndSubtraction(), \TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::stdWrap()
+     * @see calculateWithPriorityToAdditionAndSubtraction()
+     * @see \TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::stdWrap()
      */
     public static function calculateWithParentheses($string)
     {
diff --git a/typo3/sysext/core/Tests/Functional/DataHandling/FAL/AbstractActionTestCase.php b/typo3/sysext/core/Tests/Functional/DataHandling/FAL/AbstractActionTestCase.php
index e7e256a3b3dac34dd62f581f6475b54dfa0fa0a3..a9011813a9b0250752fe2983ef2e937862da7543 100644
--- a/typo3/sysext/core/Tests/Functional/DataHandling/FAL/AbstractActionTestCase.php
+++ b/typo3/sysext/core/Tests/Functional/DataHandling/FAL/AbstractActionTestCase.php
@@ -63,7 +63,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
      */
 
     /**
-     * @see Modify/DataSet/modifyContent.csv
+     * See Modify/DataSet/modifyContent.csv
      */
     public function modifyContent()
     {
@@ -71,7 +71,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see Modify/DataSet/deleteContent.csv
+     * See Modify/DataSet/deleteContent.csv
      */
     public function deleteContent()
     {
@@ -79,7 +79,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see Modify/DataSet/copyContent.csv
+     * See Modify/DataSet/copyContent.csv
      */
     public function copyContent()
     {
@@ -88,7 +88,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see Modify/DataSet/copyContentToLanguage.csv
+     * See Modify/DataSet/copyContentToLanguage.csv
      */
     public function copyContentToLanguage()
     {
@@ -97,7 +97,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see Modify/DataSet/localizeContent.csv
+     * See Modify/DataSet/localizeContent.csv
      */
     public function localizeContent()
     {
@@ -106,7 +106,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see Modify/DataSet/changeContentSorting.csv
+     * See Modify/DataSet/changeContentSorting.csv
      */
     public function changeContentSorting()
     {
@@ -114,7 +114,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see Modify/DataSet/moveContentToDifferentPage.csv
+     * See Modify/DataSet/moveContentToDifferentPage.csv
      */
     public function moveContentToDifferentPage()
     {
@@ -122,7 +122,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see Modify/DataSet/moveContentToDifferentPageNChangeSorting.csv
+     * See Modify/DataSet/moveContentToDifferentPageNChangeSorting.csv
      */
     public function moveContentToDifferentPageAndChangeSorting()
     {
@@ -135,7 +135,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
      */
 
     /**
-     * @see Modify/DataSet/createContentWFileReference.csv
+     * See Modify/DataSet/createContentWFileReference.csv
      */
     public function createContentWithFileReference()
     {
@@ -150,7 +150,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see Modify/DataSet/modifyContentWFileReference.csv
+     * See Modify/DataSet/modifyContentWFileReference.csv
      */
     public function modifyContentWithFileReference()
     {
@@ -164,7 +164,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see Modify/DataSet/modifyContentNAddFileReference.csv
+     * See Modify/DataSet/modifyContentNAddFileReference.csv
      */
     public function modifyContentAndAddFileReference()
     {
@@ -178,7 +178,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see Modify/DataSet/modifyContentNDeleteFileReference.csv
+     * See Modify/DataSet/modifyContentNDeleteFileReference.csv
      */
     public function modifyContentAndDeleteFileReference()
     {
@@ -191,7 +191,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see Modify/DataSet/modifyContentNDeleteAllFileReference.csv
+     * See Modify/DataSet/modifyContentNDeleteAllFileReference.csv
      */
     public function modifyContentAndDeleteAllFileReference()
     {
diff --git a/typo3/sysext/core/Tests/Functional/DataHandling/FAL/Modify/ActionTest.php b/typo3/sysext/core/Tests/Functional/DataHandling/FAL/Modify/ActionTest.php
index 04bbec6191b4c28c6f3fccdf8a277cb60a9f39a1..8c5fab2eea4efc486365c445e87d6eecc3a0c44a 100644
--- a/typo3/sysext/core/Tests/Functional/DataHandling/FAL/Modify/ActionTest.php
+++ b/typo3/sysext/core/Tests/Functional/DataHandling/FAL/Modify/ActionTest.php
@@ -32,7 +32,7 @@ class ActionTest extends AbstractActionTestCase
 
     /**
      * @test
-     * @see DataSet/modifyContent.csv
+     * See DataSet/modifyContent.csv
      */
     public function modifyContent()
     {
@@ -49,7 +49,7 @@ class ActionTest extends AbstractActionTestCase
 
     /**
      * @test
-     * @see DataSet/deleteContent.csv
+     * See DataSet/deleteContent.csv
      */
     public function deleteContent()
     {
@@ -65,7 +65,7 @@ class ActionTest extends AbstractActionTestCase
 
     /**
      * @test
-     * @see DataSet/copyContent.csv
+     * See DataSet/copyContent.csv
      */
     public function copyContent()
     {
@@ -82,7 +82,7 @@ class ActionTest extends AbstractActionTestCase
 
     /**
      * @test
-     * @see DataSet/copyContentToLanguage.csv
+     * See DataSet/copyContentToLanguage.csv
      */
     public function copyContentToLanguage()
     {
@@ -105,7 +105,7 @@ class ActionTest extends AbstractActionTestCase
 
     /**
      * @test
-     * @see DataSet/localizeContent.csv
+     * See DataSet/localizeContent.csv
      */
     public function localizeContent()
     {
@@ -125,7 +125,7 @@ class ActionTest extends AbstractActionTestCase
 
     /**
      * @test
-     * @see DataSet/changeContentSorting.csv
+     * See DataSet/changeContentSorting.csv
      */
     public function changeContentSorting()
     {
@@ -145,7 +145,7 @@ class ActionTest extends AbstractActionTestCase
 
     /**
      * @test
-     * @see DataSet/moveContentToDifferentPage.csv
+     * See DataSet/moveContentToDifferentPage.csv
      */
     public function moveContentToDifferentPage()
     {
@@ -168,7 +168,7 @@ class ActionTest extends AbstractActionTestCase
 
     /**
      * @test
-     * @see DataSet/moveContentToDifferentPageNChangeSorting.csv
+     * See DataSet/moveContentToDifferentPageNChangeSorting.csv
      */
     public function moveContentToDifferentPageAndChangeSorting()
     {
@@ -192,7 +192,7 @@ class ActionTest extends AbstractActionTestCase
 
     /**
      * @test
-     * @see DataSets/createContentWFileReference.csv
+     * See DataSets/createContentWFileReference.csv
      */
     public function createContentWithFileReference()
     {
@@ -209,7 +209,7 @@ class ActionTest extends AbstractActionTestCase
 
     /**
      * @test
-     * @see DataSets/modifyContentWFileReference.csv
+     * See DataSets/modifyContentWFileReference.csv
      */
     public function modifyContentWithFileReference()
     {
@@ -226,7 +226,7 @@ class ActionTest extends AbstractActionTestCase
 
     /**
      * @test
-     * @see DataSets/modifyContentNAddFileReference.csv
+     * See DataSets/modifyContentNAddFileReference.csv
      */
     public function modifyContentAndAddFileReference()
     {
@@ -241,7 +241,7 @@ class ActionTest extends AbstractActionTestCase
 
     /**
      * @test
-     * @see DataSets/modifyContentNDeleteFileReference.csv
+     * See DataSets/modifyContentNDeleteFileReference.csv
      */
     public function modifyContentAndDeleteFileReference()
     {
@@ -259,7 +259,7 @@ class ActionTest extends AbstractActionTestCase
 
     /**
      * @test
-     * @see DataSets/modifyContentNDeleteAllFileReference.csv
+     * See DataSets/modifyContentNDeleteAllFileReference.csv
      */
     public function modifyContentAndDeleteAllFileReference()
     {
diff --git a/typo3/sysext/core/Tests/Functional/DataHandling/Group/AbstractActionTestCase.php b/typo3/sysext/core/Tests/Functional/DataHandling/Group/AbstractActionTestCase.php
index 1c7d3b199b0985cd26d015208d4f3201d7390d7b..a0a16a9361af0b3f104ed561ef109eb3555b825a 100644
--- a/typo3/sysext/core/Tests/Functional/DataHandling/Group/AbstractActionTestCase.php
+++ b/typo3/sysext/core/Tests/Functional/DataHandling/Group/AbstractActionTestCase.php
@@ -57,7 +57,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
      */
 
     /**
-     * @see DataSet/addElementRelation.csv
+     * See DataSet/addElementRelation.csv
      */
     public function addElementRelation()
     {
@@ -70,7 +70,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/deleteElementRelation.csv
+     * See DataSet/deleteElementRelation.csv
      */
     public function deleteElementRelation()
     {
@@ -83,7 +83,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/changeElementSorting.csv
+     * See DataSet/changeElementSorting.csv
      */
     public function changeElementSorting()
     {
@@ -91,7 +91,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/changeElementRelationSorting.csv
+     * See DataSet/changeElementRelationSorting.csv
      */
     public function changeElementRelationSorting()
     {
@@ -104,7 +104,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/createContentNAddRelation.csv
+     * See DataSet/createContentNAddRelation.csv
      */
     public function createContentAndAddElementRelation()
     {
@@ -117,7 +117,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/createContentNCreateRelation.csv
+     * See DataSet/createContentNCreateRelation.csv
      */
     public function createContentAndCreateElementRelation()
     {
@@ -129,7 +129,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/modifyElementOfRelation.csv
+     * See DataSet/modifyElementOfRelation.csv
      */
     public function modifyElementOfRelation()
     {
@@ -137,7 +137,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/modifyContentOfRelation.csv
+     * See DataSet/modifyContentOfRelation.csv
      */
     public function modifyContentOfRelation()
     {
@@ -145,7 +145,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/modifyBothSidesOfRelation.csv
+     * See DataSet/modifyBothSidesOfRelation.csv
      */
     public function modifyBothSidesOfRelation()
     {
@@ -154,7 +154,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/deleteContentOfRelation.csv
+     * See DataSet/deleteContentOfRelation.csv
      */
     public function deleteContentOfRelation()
     {
@@ -162,7 +162,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/deleteElementOfRelation.csv
+     * See DataSet/deleteElementOfRelation.csv
      */
     public function deleteElementOfRelation()
     {
@@ -170,7 +170,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/copyContentOfRelation.csv
+     * See DataSet/copyContentOfRelation.csv
      */
     public function copyContentOfRelation()
     {
@@ -179,7 +179,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/copyElementOfRelation.csv
+     * See DataSet/copyElementOfRelation.csv
      */
     public function copyElementOfRelation()
     {
@@ -188,7 +188,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/copyContentToLanguageOfRelation.csv
+     * See DataSet/copyContentToLanguageOfRelation.csv
      */
     public function copyContentToLanguageOfRelation()
     {
@@ -197,7 +197,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/copyElementToLanguageOfRelation.csv
+     * See DataSet/copyElementToLanguageOfRelation.csv
      */
     public function copyElementToLanguageOfRelation()
     {
@@ -206,7 +206,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/localizeContentOfRelation.csv
+     * See DataSet/localizeContentOfRelation.csv
      */
     public function localizeContentOfRelation()
     {
@@ -248,7 +248,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/localizeElementOfRelation.csv
+     * See DataSet/localizeElementOfRelation.csv
      */
     public function localizeElementOfRelation()
     {
@@ -257,7 +257,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/moveContentOfRelationToDifferentPage.csv
+     * See DataSet/moveContentOfRelationToDifferentPage.csv
      */
     public function moveContentOfRelationToDifferentPage()
     {
diff --git a/typo3/sysext/core/Tests/Functional/DataHandling/Group/Modify/ActionTest.php b/typo3/sysext/core/Tests/Functional/DataHandling/Group/Modify/ActionTest.php
index bdccf2cc7572995832858f97783912894afa90f5..12fde45527df8c5cf5a681d977f735817d9f4ef1 100644
--- a/typo3/sysext/core/Tests/Functional/DataHandling/Group/Modify/ActionTest.php
+++ b/typo3/sysext/core/Tests/Functional/DataHandling/Group/Modify/ActionTest.php
@@ -30,7 +30,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Group\Abs
 
     /**
      * @test
-     * @see DataSet/addElementRelation.csv
+     * See DataSet/addElementRelation.csv
      */
     public function addElementRelation()
     {
@@ -45,7 +45,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Group\Abs
 
     /**
      * @test
-     * @see DataSet/deleteElementRelation.csv
+     * See DataSet/deleteElementRelation.csv
      */
     public function deleteElementRelation()
     {
@@ -63,7 +63,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Group\Abs
 
     /**
      * @test
-     * @see DataSet/changeElementSorting.csv
+     * See DataSet/changeElementSorting.csv
      */
     public function changeElementSorting()
     {
@@ -78,7 +78,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Group\Abs
 
     /**
      * @test
-     * @see DataSet/changeElementRelationSorting.csv
+     * See DataSet/changeElementRelationSorting.csv
      */
     public function changeElementRelationSorting()
     {
@@ -93,7 +93,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Group\Abs
 
     /**
      * @test
-     * @see DataSet/createContentNAddRelation.csv
+     * See DataSet/createContentNAddRelation.csv
      */
     public function createContentAndAddElementRelation()
     {
@@ -110,7 +110,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Group\Abs
 
     /**
      * @test
-     * @see DataSet/createContentNCreateRelation.csv
+     * See DataSet/createContentNCreateRelation.csv
      */
     public function createContentAndCreateElementRelation()
     {
@@ -127,7 +127,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Group\Abs
 
     /**
      * @test
-     * @see DataSet/modifyElementOfRelation.csv
+     * See DataSet/modifyElementOfRelation.csv
      */
     public function modifyElementOfRelation()
     {
@@ -142,7 +142,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Group\Abs
 
     /**
      * @test
-     * @see DataSet/modifyContentOfRelation.csv
+     * See DataSet/modifyContentOfRelation.csv
      */
     public function modifyContentOfRelation()
     {
@@ -156,7 +156,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Group\Abs
 
     /**
      * @test
-     * @see DataSet/modifyBothSidesOfRelation.csv
+     * See DataSet/modifyBothSidesOfRelation.csv
      */
     public function modifyBothSidesOfRelation()
     {
@@ -173,7 +173,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Group\Abs
 
     /**
      * @test
-     * @see DataSet/deleteContentOfRelation.csv
+     * See DataSet/deleteContentOfRelation.csv
      */
     public function deleteContentOfRelation()
     {
@@ -187,7 +187,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Group\Abs
 
     /**
      * @test
-     * @see DataSet/deleteElementOfRelation.csv
+     * See DataSet/deleteElementOfRelation.csv
      */
     public function deleteElementOfRelation()
     {
@@ -202,7 +202,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Group\Abs
 
     /**
      * @test
-     * @see DataSet/copyContentOfRelation.csv
+     * See DataSet/copyContentOfRelation.csv
      */
     public function copyContentOfRelation()
     {
@@ -218,7 +218,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Group\Abs
 
     /**
      * @test
-     * @see DataSet/copyElementOfRelation.csv
+     * See DataSet/copyElementOfRelation.csv
      */
     public function copyElementOfRelation()
     {
@@ -237,7 +237,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Group\Abs
 
     /**
      * @test
-     * @see DataSet/copyContentToLanguageOfRelation.csv
+     * See DataSet/copyContentToLanguageOfRelation.csv
      */
     public function copyContentToLanguageOfRelation()
     {
@@ -259,7 +259,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Group\Abs
 
     /**
      * @test
-     * @see DataSet/copyElementToLanguageOfRelation.csv
+     * See DataSet/copyElementToLanguageOfRelation.csv
      */
     public function copyElementToLanguageOfRelation()
     {
@@ -276,7 +276,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Group\Abs
 
     /**
      * @test
-     * @see DataSet/localizeContentOfRelation.csv
+     * See DataSet/localizeContentOfRelation.csv
      */
     public function localizeContentOfRelation()
     {
@@ -291,7 +291,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Group\Abs
 
     /**
      * @test
-     * @see DataSet/localizeContentOfRelationWSynchronization.csv
+     * See DataSet/localizeContentOfRelationWSynchronization.csv
      */
     public function localizeContentOfRelationWithLanguageSynchronization()
     {
@@ -306,7 +306,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Group\Abs
 
     /**
      * @test
-     * @see DataSet/localizeContentChainOfRelationWSynchronizationSource.csv
+     * See DataSet/localizeContentChainOfRelationWSynchronizationSource.csv
      */
     public function localizeContentChainOfRelationWithLanguageSynchronizationSource()
     {
@@ -321,7 +321,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Group\Abs
 
     /**
      * @test
-     * @see DataSet/localizeElementOfRelation.csv
+     * See DataSet/localizeElementOfRelation.csv
      */
     public function localizeElementOfRelation()
     {
@@ -338,7 +338,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Group\Abs
 
     /**
      * @test
-     * @see DataSet/moveContentOfRelationToDifferentPage.csv
+     * See DataSet/moveContentOfRelationToDifferentPage.csv
      */
     public function moveContentOfRelationToDifferentPage()
     {
diff --git a/typo3/sysext/core/Tests/Functional/DataHandling/IRRE/CSV/AbstractActionTestCase.php b/typo3/sysext/core/Tests/Functional/DataHandling/IRRE/CSV/AbstractActionTestCase.php
index 6e7620f61d58793a7e1bf795ba9ce39b94c25b62..d40d005f385f479cc6f5ab7c20ce2289182e3900 100644
--- a/typo3/sysext/core/Tests/Functional/DataHandling/IRRE/CSV/AbstractActionTestCase.php
+++ b/typo3/sysext/core/Tests/Functional/DataHandling/IRRE/CSV/AbstractActionTestCase.php
@@ -59,7 +59,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
      */
 
     /**
-     * @see DataSet/createParentContentRecord.csv
+     * See DataSet/createParentContentRecord.csv
      */
     public function createParentContent()
     {
@@ -68,7 +68,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/modifyParentContentRecord.csv
+     * See DataSet/modifyParentContentRecord.csv
      */
     public function modifyParentContent()
     {
@@ -76,7 +76,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/deleteParentContentRecord.csv
+     * See DataSet/deleteParentContentRecord.csv
      */
     public function deleteParentContent()
     {
@@ -84,7 +84,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/copyParentContentRecord.csv
+     * See DataSet/copyParentContentRecord.csv
      */
     public function copyParentContent()
     {
@@ -93,7 +93,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/copyParentContentToDifferentPage.csv
+     * See DataSet/copyParentContentToDifferentPage.csv
      */
     public function copyParentContentToDifferentPage()
     {
@@ -102,7 +102,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/copyParentContentToLanguage.csv
+     * See DataSet/copyParentContentToLanguage.csv
      * Should copy all children as well
      */
     public function copyParentContentToLanguage()
@@ -111,7 +111,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
         $this->recordIds['localizedContentId'] = $newTableIds[self::TABLE_Content][self::VALUE_ContentIdLast];
     }
     /**
-     * @see DataSet/localizeParentContentWAllChildren.csv
+     * See DataSet/localizeParentContentWAllChildren.csv
      * Should localize all children as well
      */
     public function localizeParentContentWithAllChildren()
@@ -135,7 +135,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/changeParentContentRecordSorting.csv
+     * See DataSet/changeParentContentRecordSorting.csv
      */
     public function changeParentContentSorting()
     {
@@ -143,7 +143,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/moveParentContentRecordToDifferentPage.csv
+     * See DataSet/moveParentContentRecordToDifferentPage.csv
      */
     public function moveParentContentToDifferentPage()
     {
@@ -151,7 +151,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/moveParentContentRecordToDifferentPageAndChangeSorting.csv
+     * See DataSet/moveParentContentRecordToDifferentPageAndChangeSorting.csv
      */
     public function moveParentContentToDifferentPageAndChangeSorting()
     {
@@ -164,7 +164,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
      */
 
     /**
-     * @see DataSet/modifyPageRecord.csv
+     * See DataSet/modifyPageRecord.csv
      */
     public function modifyPage()
     {
@@ -172,7 +172,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/deletePageRecord.csv
+     * See DataSet/deletePageRecord.csv
      */
     public function deletePage()
     {
@@ -180,7 +180,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/copyPageRecord.csv
+     * See DataSet/copyPageRecord.csv
      */
     public function copyPage()
     {
@@ -191,7 +191,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/copyPageWHotelBeforeParentContent.csv
+     * See DataSet/copyPageWHotelBeforeParentContent.csv
      */
     public function copyPageWithHotelBeforeParentContent()
     {
@@ -212,7 +212,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
      */
 
     /**
-     * @see DataSet/createParentContentRecordWithHotelAndOfferChildRecords.csv
+     * See DataSet/createParentContentRecordWithHotelAndOfferChildRecords.csv
      */
     public function createParentContentWithHotelAndOfferChildren()
     {
@@ -228,7 +228,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecords.csv
+     * See DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecords.csv
      */
     public function createAndCopyParentContentWithHotelAndOfferChildren()
     {
@@ -248,7 +248,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecords.csv
+     * See DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecords.csv
      */
     public function createAndLocalizeParentContentWithHotelAndOfferChildren()
     {
@@ -268,7 +268,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/modifyOnlyHotelChildRecord.csv
+     * See DataSet/modifyOnlyHotelChildRecord.csv
      */
     public function modifyOnlyHotelChild()
     {
@@ -276,7 +276,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/modifyParentRecordAndChangeHotelChildRecordsSorting.csv
+     * See DataSet/modifyParentRecordAndChangeHotelChildRecordsSorting.csv
      */
     public function modifyParentAndChangeHotelChildrenSorting()
     {
@@ -284,7 +284,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/modifyParentRecordWithHotelChildRecord.csv
+     * See DataSet/modifyParentRecordWithHotelChildRecord.csv
      */
     public function modifyParentWithHotelChild()
     {
@@ -298,7 +298,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/modifyParentRecordAndAddHotelChildRecord.csv
+     * See DataSet/modifyParentRecordAndAddHotelChildRecord.csv
      */
     public function modifyParentAndAddHotelChild()
     {
@@ -312,7 +312,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/modifyParentRecordAndDeleteHotelChildRecord.csv
+     * See DataSet/modifyParentRecordAndDeleteHotelChildRecord.csv
      */
     public function modifyParentAndDeleteHotelChild()
     {
diff --git a/typo3/sysext/core/Tests/Functional/DataHandling/IRRE/CSV/Modify/ActionTest.php b/typo3/sysext/core/Tests/Functional/DataHandling/IRRE/CSV/Modify/ActionTest.php
index 3ff62fd380de897fa557c6440f99db4b18280b71..031aab33b9dce52811fc142d6f3e8164bf81eab5 100644
--- a/typo3/sysext/core/Tests/Functional/DataHandling/IRRE/CSV/Modify/ActionTest.php
+++ b/typo3/sysext/core/Tests/Functional/DataHandling/IRRE/CSV/Modify/ActionTest.php
@@ -32,7 +32,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\CSV\
 
     /**
      * @test
-     * @see DataSet/createParentContentRecord.csv
+     * See DataSet/createParentContentRecord.csv
      */
     public function createParentContent()
     {
@@ -46,7 +46,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\CSV\
 
     /**
      * @test
-     * @see DataSet/modifyParentContentRecord.csv
+     * See DataSet/modifyParentContentRecord.csv
      */
     public function modifyParentContent()
     {
@@ -63,7 +63,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\CSV\
 
     /**
      * @test
-     * @see DataSet/deleteParentContentRecord.csv
+     * See DataSet/deleteParentContentRecord.csv
      */
     public function deleteParentContent()
     {
@@ -77,7 +77,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\CSV\
 
     /**
      * @test
-     * @see DataSet/copyParentContentRecord.csv
+     * See DataSet/copyParentContentRecord.csv
      */
     public function copyParentContent()
     {
@@ -92,7 +92,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\CSV\
 
     /**
      * @test
-     * @see DataSet/copyParentContentToDifferentPage.csv
+     * See DataSet/copyParentContentToDifferentPage.csv
      */
     public function copyParentContentToDifferentPage()
     {
@@ -107,7 +107,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\CSV\
 
     /**
      * @test
-     * @see DataSet/copyParentContentToLanguage.csv
+     * See DataSet/copyParentContentToLanguage.csv
      */
     public function copyParentContentToLanguageWithAllChildren()
     {
@@ -130,7 +130,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\CSV\
 
     /**
      * @test
-     * @see DataSet/localizeParentContentWAllChildren.csv
+     * See DataSet/localizeParentContentWAllChildren.csv
      */
     public function localizeParentContentWithAllChildren()
     {
@@ -148,7 +148,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\CSV\
 
     /**
      * @test
-     * @see DataSet/localizeParentContentLanguageSynchronization.csv
+     * See DataSet/localizeParentContentLanguageSynchronization.csv
      */
     public function localizeParentContentWithLanguageSynchronization()
     {
@@ -166,7 +166,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\CSV\
 
     /**
      * @test
-     * @see DataSet/changeParentContentRecordSorting.csv
+     * See DataSet/changeParentContentRecordSorting.csv
      */
     public function changeParentContentSorting()
     {
@@ -184,7 +184,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\CSV\
 
     /**
      * @test
-     * @see DataSet/moveParentContentRecordToDifferentPage.csv
+     * See DataSet/moveParentContentRecordToDifferentPage.csv
      */
     public function moveParentContentToDifferentPage()
     {
@@ -201,7 +201,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\CSV\
 
     /**
      * @test
-     * @see DataSet/moveParentContentRecordToDifferentPageAndChangeSorting.csv
+     * See DataSet/moveParentContentRecordToDifferentPageAndChangeSorting.csv
      */
     public function moveParentContentToDifferentPageAndChangeSorting()
     {
@@ -225,7 +225,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\CSV\
 
     /**
      * @test
-     * @see DataSet/modifyPageRecord.csv
+     * See DataSet/modifyPageRecord.csv
      */
     public function modifyPage()
     {
@@ -239,7 +239,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\CSV\
 
     /**
      * @test
-     * @see DataSet/deletePageRecord.csv
+     * See DataSet/deletePageRecord.csv
      */
     public function deletePage()
     {
@@ -252,7 +252,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\CSV\
 
     /**
      * @test
-     * @see DataSet/copyPageRecord.csv
+     * See DataSet/copyPageRecord.csv
      */
     public function copyPage()
     {
@@ -266,7 +266,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\CSV\
 
     /**
      * @test
-     * @see DataSet/copyPageWHotelBeforeParentContent.csv
+     * See DataSet/copyPageWHotelBeforeParentContent.csv
      */
     public function copyPageWithHotelBeforeParentContent()
     {
@@ -284,7 +284,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\CSV\
 
     /**
      * @test
-     * @see DataSet/createParentContentRecordWithHotelAndOfferChildRecords.csv
+     * See DataSet/createParentContentRecordWithHotelAndOfferChildRecords.csv
      */
     public function createParentContentWithHotelAndOfferChildren()
     {
@@ -301,7 +301,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\CSV\
 
     /**
      * @test
-     * @see DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecords.csv
+     * See DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecords.csv
      */
     public function createAndCopyParentContentWithHotelAndOfferChildren()
     {
@@ -322,7 +322,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\CSV\
 
     /**
      * @test
-     * @see DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecords.csv
+     * See DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecords.csv
      */
     public function createAndLocalizeParentContentWithHotelAndOfferChildren()
     {
@@ -345,7 +345,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\CSV\
 
     /**
      * @test
-     * @see DataSet/modifyOnlyHotelChildRecord.csv
+     * See DataSet/modifyOnlyHotelChildRecord.csv
      */
     public function modifyOnlyHotelChild()
     {
@@ -360,7 +360,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\CSV\
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordAndChangeHotelChildRecordsSorting.csv
+     * See DataSet/modifyParentRecordAndChangeHotelChildRecordsSorting.csv
      */
     public function modifyParentAndChangeHotelChildrenSorting()
     {
@@ -375,7 +375,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\CSV\
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordWithHotelChildRecord.csv
+     * See DataSet/modifyParentRecordWithHotelChildRecord.csv
      */
     public function modifyParentWithHotelChild()
     {
@@ -390,7 +390,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\CSV\
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordAndAddHotelChildRecord.csv
+     * See DataSet/modifyParentRecordAndAddHotelChildRecord.csv
      */
     public function modifyParentAndAddHotelChild()
     {
@@ -405,7 +405,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\CSV\
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordAndDeleteHotelChildRecord.csv
+     * See DataSet/modifyParentRecordAndDeleteHotelChildRecord.csv
      */
     public function modifyParentAndDeleteHotelChild()
     {
@@ -423,7 +423,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\CSV\
 
     /**
      * @test
-     * @see DataSet/localizePageWExclude.csv
+     * See DataSet/localizePageWExclude.csv
      */
     public function localizePageWithLocalizationExclude()
     {
@@ -438,7 +438,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\CSV\
 
     /**
      * @test
-     * @see DataSet/localizePageTwiceWExclude.csv
+     * See DataSet/localizePageTwiceWExclude.csv
      */
     public function localizePageTwiceWithLocalizationExclude()
     {
@@ -453,7 +453,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\CSV\
 
     /**
      * @test
-     * @see DataSet/localizePageNAddHotelChildWExclude.csv
+     * See DataSet/localizePageNAddHotelChildWExclude.csv
      */
     public function localizePageAndAddHotelChildWithLocalizationExclude()
     {
@@ -468,7 +468,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\CSV\
 
     /**
      * @test
-     * @see DataSet/localizePageWSynchronization.csv
+     * See DataSet/localizePageWSynchronization.csv
      */
     public function localizePageWithLanguageSynchronization()
     {
@@ -483,7 +483,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\CSV\
 
     /**
      * @test
-     * @see DataSet/localizePageNAddHotelChildWSynchronization.csv
+     * See DataSet/localizePageNAddHotelChildWSynchronization.csv
      */
     public function localizePageAndAddHotelChildWithLanguageSynchronization()
     {
@@ -498,7 +498,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\CSV\
 
     /**
      * @test
-     * @see DataSet/localizePageNAddMonoglotHotelChildWSynchronization.csv
+     * See DataSet/localizePageNAddMonoglotHotelChildWSynchronization.csv
      */
     public function localizePageAndAddMonoglotHotelChildWithLanguageSynchronization()
     {
@@ -513,7 +513,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\CSV\
 
     /**
      * @test
-     * @see DataSet/localizeNCopyPageWSynchronization.csv
+     * See DataSet/localizeNCopyPageWSynchronization.csv
      */
     public function localizeAndCopyPageWithLanguageSynchronization()
     {
@@ -531,7 +531,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\CSV\
      * an IRRE record is then added to the localized page
      *
      * @test
-     * @see DataSet/localizePageWithSynchronizationAndCustomLocalizedHotel.csv
+     * See DataSet/localizePageWithSynchronizationAndCustomLocalizedHotel.csv
      */
     public function localizePageWithSynchronizationAndCustomLocalizedHotel()
     {
@@ -546,7 +546,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\CSV\
 
     /**
      * @test
-     * @see DataSet/localizePageAddMonoglotHotelChildNCopyPageWSynchronization.csv
+     * See DataSet/localizePageAddMonoglotHotelChildNCopyPageWSynchronization.csv
      */
     public function localizePageAddMonoglotHotelChildAndCopyPageWithLanguageSynchronization()
     {
diff --git a/typo3/sysext/core/Tests/Functional/DataHandling/IRRE/ForeignField/AbstractActionTestCase.php b/typo3/sysext/core/Tests/Functional/DataHandling/IRRE/ForeignField/AbstractActionTestCase.php
index 2ae513036085a910339f9ba3560800e2485a6d5d..270d7ce65a778cb7282e82e4c45c2a47c0dc4294 100644
--- a/typo3/sysext/core/Tests/Functional/DataHandling/IRRE/ForeignField/AbstractActionTestCase.php
+++ b/typo3/sysext/core/Tests/Functional/DataHandling/IRRE/ForeignField/AbstractActionTestCase.php
@@ -70,7 +70,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
      */
 
     /**
-     * @see DataSet/createParentContentRecord.csv
+     * See DataSet/createParentContentRecord.csv
      */
     public function createParentContent()
     {
@@ -79,7 +79,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/modifyParentContentRecord.csv
+     * See DataSet/modifyParentContentRecord.csv
      */
     public function modifyParentContent()
     {
@@ -87,7 +87,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/deleteParentContentRecord.csv
+     * See DataSet/deleteParentContentRecord.csv
      */
     public function deleteParentContent()
     {
@@ -95,7 +95,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/copyParentContentRecord.csv
+     * See DataSet/copyParentContentRecord.csv
      */
     public function copyParentContent()
     {
@@ -104,7 +104,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/copyParentContentToDifferentPage.csv
+     * See DataSet/copyParentContentToDifferentPage.csv
      */
     public function copyParentContentToDifferentPage()
     {
@@ -113,7 +113,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/localizeParentContentSynchronization.csv
+     * See DataSet/localizeParentContentSynchronization.csv
      */
     public function localizeParentContentWithLanguageSynchronization()
     {
@@ -125,7 +125,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/localizeParentContentWAllChildrenSelect.csv
+     * See DataSet/localizeParentContentWAllChildrenSelect.csv
      */
     public function localizeParentContentChainLanguageSynchronizationSource()
     {
@@ -149,7 +149,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/copyParentContentToLanguageWAllChildren.csv
+     * See DataSet/copyParentContentToLanguageWAllChildren.csv
      */
     public function copyParentContentToLanguageWithAllChildren()
     {
@@ -158,7 +158,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/localizeParentContentWAllChildren.csv
+     * See DataSet/localizeParentContentWAllChildren.csv
      */
     public function localizeParentContentWithAllChildren()
     {
@@ -167,7 +167,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/Modify/localizeParentContentNCreateNestedChildrenWLanguageSynchronization.csv
+     * See DataSet/Modify/localizeParentContentNCreateNestedChildrenWLanguageSynchronization.csv
      */
     public function localizeParentContentAndCreateNestedChildrenWithLanguageSynchronization()
     {
@@ -202,7 +202,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/localizeParentContentSynchronization.csv
+     * See DataSet/localizeParentContentSynchronization.csv
      */
     public function localizeParentContentAndSetInvalidChildReferenceWithLanguageSynchronization()
     {
@@ -216,7 +216,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/localizeParentContentSynchronization.csv
+     * See DataSet/localizeParentContentSynchronization.csv
      */
     public function localizeParentContentAndSetInvalidChildReferenceWithLateLanguageSynchronization()
     {
@@ -244,7 +244,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/changeParentContentRecordSorting.csv
+     * See DataSet/changeParentContentRecordSorting.csv
      */
     public function changeParentContentSorting()
     {
@@ -252,7 +252,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/moveParentContentRecordToDifferentPage.csv
+     * See DataSet/moveParentContentRecordToDifferentPage.csv
      */
     public function moveParentContentToDifferentPage()
     {
@@ -260,7 +260,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/moveParentContentRecordToDifferentPageAndChangeSorting.csv
+     * See DataSet/moveParentContentRecordToDifferentPageAndChangeSorting.csv
      */
     public function moveParentContentToDifferentPageAndChangeSorting()
     {
@@ -273,7 +273,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
      */
 
     /**
-     * @see DataSet/modifyPageRecord.csv
+     * See DataSet/modifyPageRecord.csv
      */
     public function modifyPage()
     {
@@ -281,7 +281,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/deletePageRecord.csv
+     * See DataSet/deletePageRecord.csv
      */
     public function deletePage()
     {
@@ -289,7 +289,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/copyPageRecord.csv
+     * See DataSet/copyPageRecord.csv
      */
     public function copyPage()
     {
@@ -300,7 +300,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/copyPageWHotelBeforeParentContent.csv
+     * See DataSet/copyPageWHotelBeforeParentContent.csv
      */
     public function copyPageWithHotelBeforeParentContent()
     {
@@ -321,7 +321,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
      */
 
     /**
-     * @see DataSet/createParentContentRecordWithHotelAndOfferChildRecords.csv
+     * See DataSet/createParentContentRecordWithHotelAndOfferChildRecords.csv
      */
     public function createParentContentWithHotelAndOfferChildren()
     {
@@ -337,7 +337,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecords.csv
+     * See DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecords.csv
      */
     public function createAndCopyParentContentWithHotelAndOfferChildren()
     {
@@ -357,7 +357,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecords.csv
+     * See DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecords.csv
      */
     public function createAndLocalizeParentContentWithHotelAndOfferChildren()
     {
@@ -376,7 +376,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecords.csv
+     * See DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecords.csv
      */
     public function createAndLocalizeParentContentWithHotelAndOfferChildrenWithoutSortByConfiguration()
     {
@@ -396,7 +396,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/modifyOnlyHotelChildRecord.csv
+     * See DataSet/modifyOnlyHotelChildRecord.csv
      */
     public function modifyOnlyHotelChild()
     {
@@ -404,7 +404,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/modifyParentRecordAndChangeHotelChildRecordsSorting.csv
+     * See DataSet/modifyParentRecordAndChangeHotelChildRecordsSorting.csv
      */
     public function modifyParentAndChangeHotelChildrenSorting()
     {
@@ -412,7 +412,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/modifyParentRecordWithHotelChildRecord.csv
+     * See DataSet/modifyParentRecordWithHotelChildRecord.csv
      */
     public function modifyParentWithHotelChild()
     {
@@ -426,7 +426,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/modifyParentRecordAndAddHotelChildRecord.csv
+     * See DataSet/modifyParentRecordAndAddHotelChildRecord.csv
      */
     public function modifyParentAndAddHotelChild()
     {
@@ -440,7 +440,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/modifyParentRecordAndDeleteHotelChildRecord.csv
+     * See DataSet/modifyParentRecordAndDeleteHotelChildRecord.csv
      */
     public function modifyParentAndDeleteHotelChild()
     {
diff --git a/typo3/sysext/core/Tests/Functional/DataHandling/IRRE/ForeignField/Modify/ActionTest.php b/typo3/sysext/core/Tests/Functional/DataHandling/IRRE/ForeignField/Modify/ActionTest.php
index 1c351a44c777a216d940857b4a89e9d82996c275..590e1dae68625d0706fd16c56c796cb9f7cca942 100644
--- a/typo3/sysext/core/Tests/Functional/DataHandling/IRRE/ForeignField/Modify/ActionTest.php
+++ b/typo3/sysext/core/Tests/Functional/DataHandling/IRRE/ForeignField/Modify/ActionTest.php
@@ -32,7 +32,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/createParentContentRecord.csv
+     * See DataSet/createParentContentRecord.csv
      */
     public function createParentContent()
     {
@@ -46,7 +46,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/modifyParentContentRecord.csv
+     * See DataSet/modifyParentContentRecord.csv
      */
     public function modifyParentContent()
     {
@@ -63,7 +63,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/deleteParentContentRecord.csv
+     * See DataSet/deleteParentContentRecord.csv
      */
     public function deleteParentContent()
     {
@@ -77,7 +77,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/copyParentContentRecord.csv
+     * See DataSet/copyParentContentRecord.csv
      */
     public function copyParentContent()
     {
@@ -92,7 +92,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/copyParentContentToDifferentPage.csv
+     * See DataSet/copyParentContentToDifferentPage.csv
      */
     public function copyParentContentToDifferentPage()
     {
@@ -107,7 +107,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/copyParentContentToLanguageWAllChildren.csv
+     * See DataSet/copyParentContentToLanguageWAllChildren.csv
      */
     public function copyParentContentToLanguageWithAllChildren()
     {
@@ -128,7 +128,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/localizeParentContentWAllChildren.csv
+     * See DataSet/localizeParentContentWAllChildren.csv
      */
     public function localizeParentContentWithAllChildren()
     {
@@ -145,7 +145,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/localizeParentContentSynchronization.csv
+     * See DataSet/localizeParentContentSynchronization.csv
      */
     public function localizeParentContentWithLanguageSynchronization()
     {
@@ -162,7 +162,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/localizeParentContentChainLanguageSynchronizationSource.csv
+     * See DataSet/localizeParentContentChainLanguageSynchronizationSource.csv
      */
     public function localizeParentContentChainLanguageSynchronizationSource()
     {
@@ -180,7 +180,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/Modify/localizeParentContentNCreateNestedChildrenWLanguageSynchronization.csv
+     * See DataSet/Modify/localizeParentContentNCreateNestedChildrenWLanguageSynchronization.csv
      */
     public function localizeParentContentAndCreateNestedChildrenWithLanguageSynchronization()
     {
@@ -197,7 +197,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/localizeParentContentSynchronization.csv
+     * See DataSet/localizeParentContentSynchronization.csv
      */
     public function localizeParentContentAndSetInvalidChildReferenceWithLanguageSynchronization()
     {
@@ -215,7 +215,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/localizeParentContentSynchronization.csv
+     * See DataSet/localizeParentContentSynchronization.csv
      */
     public function localizeParentContentAndSetInvalidChildReferenceWithLateLanguageSynchronization()
     {
@@ -233,7 +233,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/changeParentContentRecordSorting.csv
+     * See DataSet/changeParentContentRecordSorting.csv
      */
     public function changeParentContentSorting()
     {
@@ -251,7 +251,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/moveParentContentRecordToDifferentPage.csv
+     * See DataSet/moveParentContentRecordToDifferentPage.csv
      */
     public function moveParentContentToDifferentPage()
     {
@@ -268,7 +268,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/moveParentContentRecordToDifferentPageAndChangeSorting.csv
+     * See DataSet/moveParentContentRecordToDifferentPageAndChangeSorting.csv
      */
     public function moveParentContentToDifferentPageAndChangeSorting()
     {
@@ -292,7 +292,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/modifyPageRecord.csv
+     * See DataSet/modifyPageRecord.csv
      */
     public function modifyPage()
     {
@@ -306,7 +306,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/deletePageRecord.csv
+     * See DataSet/deletePageRecord.csv
      */
     public function deletePage()
     {
@@ -319,7 +319,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/copyPageRecord.csv
+     * See DataSet/copyPageRecord.csv
      */
     public function copyPage()
     {
@@ -333,7 +333,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/copyPageWHotelBeforeParentContent.csv
+     * See DataSet/copyPageWHotelBeforeParentContent.csv
      */
     public function copyPageWithHotelBeforeParentContent()
     {
@@ -351,7 +351,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/createParentContentRecordWithHotelAndOfferChildRecords.csv
+     * See DataSet/createParentContentRecordWithHotelAndOfferChildRecords.csv
      */
     public function createParentContentWithHotelAndOfferChildren()
     {
@@ -368,7 +368,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecords.csv
+     * See DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecords.csv
      */
     public function createAndCopyParentContentWithHotelAndOfferChildren()
     {
@@ -389,7 +389,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecords.csv
+     * See DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecords.csv
      */
     public function createAndLocalizeParentContentWithHotelAndOfferChildren()
     {
@@ -411,7 +411,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/createNLocalizeParentContentNHotelNOfferChildrenWOSortBy.csv
+     * See DataSet/createNLocalizeParentContentNHotelNOfferChildrenWOSortBy.csv
      */
     public function createAndLocalizeParentContentWithHotelAndOfferChildrenWithoutSortByConfiguration()
     {
@@ -433,7 +433,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/modifyOnlyHotelChildRecord.csv
+     * See DataSet/modifyOnlyHotelChildRecord.csv
      */
     public function modifyOnlyHotelChild()
     {
@@ -448,7 +448,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordAndChangeHotelChildRecordsSorting.csv
+     * See DataSet/modifyParentRecordAndChangeHotelChildRecordsSorting.csv
      */
     public function modifyParentAndChangeHotelChildrenSorting()
     {
@@ -463,7 +463,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordWithHotelChildRecord.csv
+     * See DataSet/modifyParentRecordWithHotelChildRecord.csv
      */
     public function modifyParentWithHotelChild()
     {
@@ -478,7 +478,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordAndAddHotelChildRecord.csv
+     * See DataSet/modifyParentRecordAndAddHotelChildRecord.csv
      */
     public function modifyParentAndAddHotelChild()
     {
@@ -493,7 +493,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordAndDeleteHotelChildRecord.csv
+     * See DataSet/modifyParentRecordAndDeleteHotelChildRecord.csv
      */
     public function modifyParentAndDeleteHotelChild()
     {
@@ -511,7 +511,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/localizePageWExclude.csv
+     * See DataSet/localizePageWExclude.csv
      */
     public function localizePageWithLocalizationExclude()
     {
@@ -526,7 +526,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/localizePageTwiceWExclude.csv
+     * See DataSet/localizePageTwiceWExclude.csv
      */
     public function localizePageTwiceWithLocalizationExclude()
     {
@@ -541,7 +541,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/localizePageNAddHotelChildWExclude.csv
+     * See DataSet/localizePageNAddHotelChildWExclude.csv
      */
     public function localizePageAndAddHotelChildWithLocalizationExclude()
     {
@@ -556,7 +556,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/localizePageWSynchronization.csv
+     * See DataSet/localizePageWSynchronization.csv
      */
     public function localizePageWithLanguageSynchronization()
     {
@@ -571,7 +571,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/localizePageNAddHotelChildWSynchronization.csv
+     * See DataSet/localizePageNAddHotelChildWSynchronization.csv
      */
     public function localizePageAndAddHotelChildWithLanguageSynchronization()
     {
@@ -586,7 +586,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/localizePageNAddMonoglotHotelChildWSynchronization.csv
+     * See DataSet/localizePageNAddMonoglotHotelChildWSynchronization.csv
      */
     public function localizePageAndAddMonoglotHotelChildWithLanguageSynchronization()
     {
@@ -601,7 +601,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/localizeNCopyPageWSynchronization.csv
+     * See DataSet/localizeNCopyPageWSynchronization.csv
      */
     public function localizeAndCopyPageWithLanguageSynchronization()
     {
@@ -619,7 +619,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
      * an IRRE record is then added to the localized page
      *
      * @test
-     * @see DataSet/localizePageWithSynchronizationAndCustomLocalizedHotel.csv
+     * See DataSet/localizePageWithSynchronizationAndCustomLocalizedHotel.csv
      */
     public function localizePageWithSynchronizationAndCustomLocalizedHotel()
     {
@@ -634,7 +634,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\IRRE\Fore
 
     /**
      * @test
-     * @see DataSet/localizePageAddMonoglotHotelChildNCopyPageWSynchronization.csv
+     * See DataSet/localizePageAddMonoglotHotelChildNCopyPageWSynchronization.csv
      */
     public function localizePageAddMonoglotHotelChildAndCopyPageWithLanguageSynchronization()
     {
diff --git a/typo3/sysext/core/Tests/Functional/DataHandling/ManyToMany/AbstractActionTestCase.php b/typo3/sysext/core/Tests/Functional/DataHandling/ManyToMany/AbstractActionTestCase.php
index ad0aa64218e7bbeb6a52a2d65a5668c30fbf176a..4b4547a8bd6d5ac3507c1fabad35933ebc3259d0 100644
--- a/typo3/sysext/core/Tests/Functional/DataHandling/ManyToMany/AbstractActionTestCase.php
+++ b/typo3/sysext/core/Tests/Functional/DataHandling/ManyToMany/AbstractActionTestCase.php
@@ -57,7 +57,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
      */
 
     /**
-     * @see DataSet/addCategoryRelation.csv
+     * See DataSet/addCategoryRelation.csv
      */
     public function addCategoryRelation()
     {
@@ -70,7 +70,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/deleteCategoryRelation.csv
+     * See DataSet/deleteCategoryRelation.csv
      */
     public function deleteCategoryRelation()
     {
@@ -83,7 +83,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/changeCategoryRelationSorting.csv
+     * See DataSet/changeCategoryRelationSorting.csv
      */
     public function changeCategoryRelationSorting()
     {
@@ -96,7 +96,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/modifyCategoryRecordOfCategoryRelation.csv
+     * See DataSet/modifyCategoryRecordOfCategoryRelation.csv
      */
     public function modifyCategoryOfRelation()
     {
@@ -104,7 +104,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/modifyContentRecordOfCategoryRelation.csv
+     * See DataSet/modifyContentRecordOfCategoryRelation.csv
      */
     public function modifyContentOfRelation()
     {
@@ -112,7 +112,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/modifyBothRecordsOfCategoryRelation.csv
+     * See DataSet/modifyBothRecordsOfCategoryRelation.csv
      */
     public function modifyBothsOfRelation()
     {
@@ -121,7 +121,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/deleteContentRecordOfCategoryRelation.csv
+     * See DataSet/deleteContentRecordOfCategoryRelation.csv
      */
     public function deleteContentOfRelation()
     {
@@ -129,7 +129,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/deleteCategoryRecordOfCategoryRelation.csv
+     * See DataSet/deleteCategoryRecordOfCategoryRelation.csv
      */
     public function deleteCategoryOfRelation()
     {
@@ -137,7 +137,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/copyContentRecordOfCategoryRelation.csv
+     * See DataSet/copyContentRecordOfCategoryRelation.csv
      */
     public function copyContentOfRelation()
     {
@@ -146,7 +146,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/copyCategoryRecordOfCategoryRelation.csv
+     * See DataSet/copyCategoryRecordOfCategoryRelation.csv
      */
     public function copyCategoryOfRelation()
     {
@@ -155,7 +155,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/copyContentToLanguageOfRelation.csv
+     * See DataSet/copyContentToLanguageOfRelation.csv
      */
     public function copyContentToLanguageOfRelation()
     {
@@ -163,7 +163,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/copyCategoryToLanguageOfRelation.csv
+     * See DataSet/copyCategoryToLanguageOfRelation.csv
      */
     public function copyCategoryToLanguageOfRelation()
     {
@@ -171,7 +171,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/localizeContentRecordOfCategoryRelation.csv
+     * See DataSet/localizeContentRecordOfCategoryRelation.csv
      */
     public function localizeContentOfRelation()
     {
@@ -216,7 +216,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/localizeCategoryRecordOfCategoryRelation.csv
+     * See DataSet/localizeCategoryRecordOfCategoryRelation.csv
      */
     public function localizeCategoryOfRelation()
     {
@@ -225,7 +225,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/moveContentRecordOfCategoryRelationToDifferentPage.csv
+     * See DataSet/moveContentRecordOfCategoryRelationToDifferentPage.csv
      */
     public function moveContentOfRelationToDifferentPage()
     {
@@ -233,7 +233,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/copyPage.csv
+     * See DataSet/copyPage.csv
      */
     public function copyPage()
     {
diff --git a/typo3/sysext/core/Tests/Functional/DataHandling/ManyToMany/Modify/ActionTest.php b/typo3/sysext/core/Tests/Functional/DataHandling/ManyToMany/Modify/ActionTest.php
index 115e993993d0708c27f35d538fa5eab8eac40263..3c9ac20cd7f2fb74094e69933513444b2c541254 100644
--- a/typo3/sysext/core/Tests/Functional/DataHandling/ManyToMany/Modify/ActionTest.php
+++ b/typo3/sysext/core/Tests/Functional/DataHandling/ManyToMany/Modify/ActionTest.php
@@ -30,7 +30,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\ManyToMan
 
     /**
      * @test
-     * @see DataSet/addCategoryRelation.csv
+     * See DataSet/addCategoryRelation.csv
      */
     public function addCategoryRelation()
     {
@@ -45,7 +45,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\ManyToMan
 
     /**
      * @test
-     * @see DataSet/deleteCategoryRelation.csv
+     * See DataSet/deleteCategoryRelation.csv
      */
     public function deleteCategoryRelation()
     {
@@ -63,7 +63,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\ManyToMan
 
     /**
      * @test
-     * @see DataSet/changeCategoryRelationSorting.csv
+     * See DataSet/changeCategoryRelationSorting.csv
      */
     public function changeCategoryRelationSorting()
     {
@@ -78,7 +78,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\ManyToMan
 
     /**
      * @test
-     * @see DataSet/modifyCategoryRecordOfCategoryRelation.csv
+     * See DataSet/modifyCategoryRecordOfCategoryRelation.csv
      */
     public function modifyCategoryOfRelation()
     {
@@ -93,7 +93,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\ManyToMan
 
     /**
      * @test
-     * @see DataSet/modifyContentRecordOfCategoryRelation.csv
+     * See DataSet/modifyContentRecordOfCategoryRelation.csv
      */
     public function modifyContentOfRelation()
     {
@@ -107,7 +107,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\ManyToMan
 
     /**
      * @test
-     * @see DataSet/modifyBothRecordsOfCategoryRelation.csv
+     * See DataSet/modifyBothRecordsOfCategoryRelation.csv
      */
     public function modifyBothsOfRelation()
     {
@@ -124,7 +124,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\ManyToMan
 
     /**
      * @test
-     * @see DataSet/deleteContentRecordOfCategoryRelation.csv
+     * See DataSet/deleteContentRecordOfCategoryRelation.csv
      */
     public function deleteContentOfRelation()
     {
@@ -138,7 +138,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\ManyToMan
 
     /**
      * @test
-     * @see DataSet/deleteCategoryRecordOfCategoryRelation.csv
+     * See DataSet/deleteCategoryRecordOfCategoryRelation.csv
      */
     public function deleteCategoryOfRelation()
     {
@@ -153,7 +153,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\ManyToMan
 
     /**
      * @test
-     * @see DataSet/copyContentRecordOfCategoryRelation.csv
+     * See DataSet/copyContentRecordOfCategoryRelation.csv
      */
     public function copyContentOfRelation()
     {
@@ -168,7 +168,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\ManyToMan
 
     /**
      * @test
-     * @see DataSet/copyCategoryRecordOfCategoryRelation.csv
+     * See DataSet/copyCategoryRecordOfCategoryRelation.csv
      */
     public function copyCategoryOfRelation()
     {
@@ -183,7 +183,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\ManyToMan
 
     /**
      * @test
-     * @see DataSet/copyContentToLanguageOfRelation.csv
+     * See DataSet/copyContentToLanguageOfRelation.csv
      */
     public function copyContentToLanguageOfRelation()
     {
@@ -198,7 +198,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\ManyToMan
 
     /**
      * @test
-     * @see DataSet/copyCategoryToLanguageOfRelation.csv
+     * See DataSet/copyCategoryToLanguageOfRelation.csv
      */
     public function copyCategoryToLanguageOfRelation()
     {
@@ -214,7 +214,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\ManyToMan
 
     /**
      * @test
-     * @see DataSet/localizeContentRecordOfCategoryRelation.csv
+     * See DataSet/localizeContentRecordOfCategoryRelation.csv
      */
     public function localizeContentOfRelation()
     {
@@ -229,7 +229,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\ManyToMan
 
     /**
      * @test
-     * @see DataSet/localizeContentOfRelationWSynchronization.csv
+     * See DataSet/localizeContentOfRelationWSynchronization.csv
      */
     public function localizeContentOfRelationWithLanguageSynchronization()
     {
@@ -244,7 +244,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\ManyToMan
 
     /**
      * @test
-     * @see DataSet/localizeContentOfRelationNAddCategoryWSynchronization.csv
+     * See DataSet/localizeContentOfRelationNAddCategoryWSynchronization.csv
      */
     public function localizeContentOfRelationAndAddCategoryWithLanguageSynchronization()
     {
@@ -259,7 +259,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\ManyToMan
 
     /**
      * @test
-     * @see DataSet/localizeContentChainOfRelationNAddCategoryWSynchronization.csv
+     * See DataSet/localizeContentChainOfRelationNAddCategoryWSynchronization.csv
      */
     public function localizeContentChainOfRelationAndAddCategoryWithLanguageSynchronization()
     {
@@ -274,7 +274,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\ManyToMan
 
     /**
      * @test
-     * @see DataSet/localizeCategoryRecordOfCategoryRelation.csv
+     * See DataSet/localizeCategoryRecordOfCategoryRelation.csv
      */
     public function localizeCategoryOfRelation()
     {
@@ -291,7 +291,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\ManyToMan
 
     /**
      * @test
-     * @see DataSet/moveContentRecordOfCategoryRelationToDifferentPage.csv
+     * See DataSet/moveContentRecordOfCategoryRelationToDifferentPage.csv
      */
     public function moveContentOfRelationToDifferentPage()
     {
@@ -306,7 +306,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\ManyToMan
 
     /**
      * @test
-     * @see DataSet/copyPage.csv
+     * See DataSet/copyPage.csv
      */
     public function copyPage()
     {
diff --git a/typo3/sysext/core/Tests/Functional/DataHandling/Regular/AbstractActionTestCase.php b/typo3/sysext/core/Tests/Functional/DataHandling/Regular/AbstractActionTestCase.php
index be755311b7e5313a5c582622c3a40d50383daab0..07f21fd98fc6f1d1a09a5680a987e90743f4118b 100644
--- a/typo3/sysext/core/Tests/Functional/DataHandling/Regular/AbstractActionTestCase.php
+++ b/typo3/sysext/core/Tests/Functional/DataHandling/Regular/AbstractActionTestCase.php
@@ -55,7 +55,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
      */
 
     /**
-     * @see DataSet/createContentRecords.csv
+     * See DataSet/createContentRecords.csv
      */
     public function createContents()
     {
@@ -70,7 +70,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     /**
      * Creation of a content element with language set to all
      *
-     * @see DataSet/createContentForLanguageAll.csv
+     * See DataSet/createContentForLanguageAll.csv
      */
     public function createContentForLanguageAll()
     {
@@ -79,7 +79,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/modifyContentRecord.csv
+     * See DataSet/modifyContentRecord.csv
      */
     public function modifyContent()
     {
@@ -87,7 +87,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/deleteContentRecord.csv
+     * See DataSet/deleteContentRecord.csv
      */
     public function deleteContent()
     {
@@ -95,7 +95,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/deleteLocalizedContentNDeleteContent.csv
+     * See DataSet/deleteLocalizedContentNDeleteContent.csv
      */
     public function deleteLocalizedContentAndDeleteContent()
     {
@@ -104,7 +104,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/copyContentRecord.csv
+     * See DataSet/copyContentRecord.csv
      */
     public function copyContent()
     {
@@ -113,7 +113,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/copyContentToLanguage.csv
+     * See DataSet/copyContentToLanguage.csv
      */
     public function copyContentToLanguage()
     {
@@ -122,7 +122,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/copyContentToLanguageWSynchronization.csv
+     * See DataSet/copyContentToLanguageWSynchronization.csv
      */
     public function copyContentToLanguageWithLanguageSynchronization()
     {
@@ -133,7 +133,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/copyContentToLanguageWExclude.csv
+     * See DataSet/copyContentToLanguageWExclude.csv
      */
     public function copyContentToLanguageWithLocalizationExclude()
     {
@@ -146,7 +146,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     /**
      * Free mode "translation" of a record in non default language
      *
-     * @see DataSet/copyContentToLanguageFromNonDefaultLanguage.csv
+     * See DataSet/copyContentToLanguageFromNonDefaultLanguage.csv
      */
     public function copyContentToLanguageFromNonDefaultLanguage()
     {
@@ -155,7 +155,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/copyPasteContent.csv
+     * See DataSet/copyPasteContent.csv
      */
     public function copyPasteContent()
     {
@@ -163,7 +163,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/localizeContentRecord.csv
+     * See DataSet/localizeContentRecord.csv
      */
     public function localizeContent()
     {
@@ -172,7 +172,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/localizeContentRecord.csv
+     * See DataSet/localizeContentRecord.csv
      * @see \TYPO3\CMS\Core\Migrations\TcaMigration::sanitizeControlSectionIntegrity()
      */
     public function localizeContentWithEmptyTcaIntegrityColumns()
@@ -210,7 +210,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/localizeContentFromNonDefaultLanguage.csv
+     * See DataSet/localizeContentFromNonDefaultLanguage.csv
      */
     public function localizeContentFromNonDefaultLanguage()
     {
@@ -263,7 +263,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/changeContentRecordSorting.csv
+     * See DataSet/changeContentRecordSorting.csv
      */
     public function changeContentSorting()
     {
@@ -271,7 +271,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/moveContentRecordToDifferentPage.csv
+     * See DataSet/moveContentRecordToDifferentPage.csv
      */
     public function moveContentToDifferentPage()
     {
@@ -279,7 +279,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/movePasteContentToDifferentPage.csv
+     * See DataSet/movePasteContentToDifferentPage.csv
      */
     public function movePasteContentToDifferentPage()
     {
@@ -287,7 +287,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/moveContentRecordToDifferentPageAndChangeSorting.csv
+     * See DataSet/moveContentRecordToDifferentPageAndChangeSorting.csv
      */
     public function moveContentToDifferentPageAndChangeSorting()
     {
@@ -300,7 +300,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
      */
 
     /**
-     * @see DataSet/createPageRecord.csv
+     * See DataSet/createPageRecord.csv
      */
     public function createPage()
     {
@@ -309,7 +309,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/modifyPageRecord.csv
+     * See DataSet/modifyPageRecord.csv
      */
     public function modifyPage()
     {
@@ -317,7 +317,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/deletePageRecord.csv
+     * See DataSet/deletePageRecord.csv
      */
     public function deletePage()
     {
@@ -325,7 +325,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/copyPage.csv
+     * See DataSet/copyPage.csv
      */
     public function copyPage()
     {
@@ -336,7 +336,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/copyPageFreeMode.csv
+     * See DataSet/copyPageFreeMode.csv
      */
     public function copyPageFreeMode()
     {
@@ -345,7 +345,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/localizePageRecord.csv
+     * See DataSet/localizePageRecord.csv
      */
     public function localizePage()
     {
@@ -363,7 +363,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/changePageRecordSorting.csv
+     * See DataSet/changePageRecordSorting.csv
      */
     public function changePageSorting()
     {
@@ -371,7 +371,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/movePageRecordToDifferentPage.csv
+     * See DataSet/movePageRecordToDifferentPage.csv
      */
     public function movePageToDifferentPage()
     {
@@ -379,7 +379,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/movePageRecordToDifferentPageAndChangeSorting.csv
+     * See DataSet/movePageRecordToDifferentPageAndChangeSorting.csv
      */
     public function movePageToDifferentPageAndChangeSorting()
     {
diff --git a/typo3/sysext/core/Tests/Functional/DataHandling/Regular/Modify/ActionTest.php b/typo3/sysext/core/Tests/Functional/DataHandling/Regular/Modify/ActionTest.php
index ec70897ccfd6fd0c37d5c195873d08e069b111fc..bfb500f7e1145050dfb3c52f649b99e1e421b766 100644
--- a/typo3/sysext/core/Tests/Functional/DataHandling/Regular/Modify/ActionTest.php
+++ b/typo3/sysext/core/Tests/Functional/DataHandling/Regular/Modify/ActionTest.php
@@ -32,7 +32,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/createContentRecords.csv
+     * See DataSet/createContentRecords.csv
      */
     public function createContents()
     {
@@ -46,7 +46,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/createContentForLanguageAll.csv
+     * See DataSet/createContentForLanguageAll.csv
      */
     public function createContentForLanguageAll()
     {
@@ -64,7 +64,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/modifyContentRecord.csv
+     * See DataSet/modifyContentRecord.csv
      */
     public function modifyContent()
     {
@@ -78,7 +78,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/deleteContentRecord.csv
+     * See DataSet/deleteContentRecord.csv
      */
     public function deleteContent()
     {
@@ -94,7 +94,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/deleteLocalizedContentNDeleteContent.csv
+     * See DataSet/deleteLocalizedContentNDeleteContent.csv
      */
     public function deleteLocalizedContentAndDeleteContent()
     {
@@ -108,7 +108,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/copyContentRecord.csv
+     * See DataSet/copyContentRecord.csv
      */
     public function copyContent()
     {
@@ -122,7 +122,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/copyContentToLanguage.csv
+     * See DataSet/copyContentToLanguage.csv
      */
     public function copyContentToLanguage()
     {
@@ -142,7 +142,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/copyContentToLanguageWSynchronization.csv
+     * See DataSet/copyContentToLanguageWSynchronization.csv
      */
     public function copyContentToLanguageWithLanguageSynchronization()
     {
@@ -162,7 +162,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/copyContentToLanguageWExclude.csv
+     * See DataSet/copyContentToLanguageWExclude.csv
      */
     public function copyContentToLanguageWithLocalizationExclude()
     {
@@ -182,7 +182,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/copyContentToLanguageFromNonDefaultLanguage.csv
+     * See DataSet/copyContentToLanguageFromNonDefaultLanguage.csv
      */
     public function copyContentToLanguageFromNonDefaultLanguage()
     {
@@ -203,7 +203,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/copyContentRecord.csv
+     * See DataSet/copyContentRecord.csv
      */
     public function copyPasteContent()
     {
@@ -217,7 +217,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/localizeContentRecord.csv
+     * See DataSet/localizeContentRecord.csv
      */
     public function localizeContent()
     {
@@ -233,7 +233,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/localizeContentRecord.csv
+     * See DataSet/localizeContentRecord.csv
      * @see \TYPO3\CMS\Core\Migrations\TcaMigration::sanitizeControlSectionIntegrity()
      */
     public function localizeContentWithEmptyTcaIntegrityColumns()
@@ -250,7 +250,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/localizeContentWSynchronization.csv
+     * See DataSet/localizeContentWSynchronization.csv
      */
     public function localizeContentWithLanguageSynchronization()
     {
@@ -266,7 +266,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/localizeContentWSynchronizationHNull.csv
+     * See DataSet/localizeContentWSynchronizationHNull.csv
      */
     public function localizeContentWithLanguageSynchronizationHavingNullValue()
     {
@@ -282,7 +282,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/localizeContentFromNonDefaultLanguage.csv
+     * See DataSet/localizeContentFromNonDefaultLanguage.csv
      */
     public function localizeContentFromNonDefaultLanguage()
     {
@@ -300,7 +300,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/localizeContentFromNonDefaultLanguageWSynchronizationDefault.csv
+     * See DataSet/localizeContentFromNonDefaultLanguageWSynchronizationDefault.csv
      */
     public function localizeContentFromNonDefaultLanguageWithLanguageSynchronizationDefault()
     {
@@ -318,7 +318,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/localizeContentFromNonDefaultLanguageWSynchronizationSource.csv
+     * See DataSet/localizeContentFromNonDefaultLanguageWSynchronizationSource.csv
      */
     public function localizeContentFromNonDefaultLanguageWithLanguageSynchronizationSource()
     {
@@ -336,7 +336,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/createLocalizedContent.csv
+     * See DataSet/createLocalizedContent.csv
      */
     public function createLocalizedContent()
     {
@@ -353,7 +353,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/createLocalizedContentWSynchronization.csv
+     * See DataSet/createLocalizedContentWSynchronization.csv
      */
     public function createLocalizedContentWithLanguageSynchronization()
     {
@@ -370,7 +370,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/createLocalizedContentWExclude.csv
+     * See DataSet/createLocalizedContentWExclude.csv
      */
     public function createLocalizedContentWithLocalizationExclude()
     {
@@ -385,7 +385,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/changeContentRecordSorting.csv
+     * See DataSet/changeContentRecordSorting.csv
      */
     public function changeContentSorting()
     {
@@ -399,7 +399,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/moveContentRecordToDifferentPage.csv
+     * See DataSet/moveContentRecordToDifferentPage.csv
      */
     public function moveContentToDifferentPage()
     {
@@ -416,7 +416,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/movePasteContentToDifferentPage.csv
+     * See DataSet/movePasteContentToDifferentPage.csv
      */
     public function movePasteContentToDifferentPage()
     {
@@ -433,7 +433,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/moveContentRecordToDifferentPageAndChangeSorting.csv
+     * See DataSet/moveContentRecordToDifferentPageAndChangeSorting.csv
      */
     public function moveContentToDifferentPageAndChangeSorting()
     {
@@ -451,7 +451,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/createPageRecord.csv
+     * See DataSet/createPageRecord.csv
      */
     public function createPage()
     {
@@ -465,7 +465,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/modifyPageRecord.csv
+     * See DataSet/modifyPageRecord.csv
      */
     public function modifyPage()
     {
@@ -479,7 +479,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/deletePageRecord.csv
+     * See DataSet/deletePageRecord.csv
      */
     public function deletePage()
     {
@@ -492,7 +492,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/copyPage.csv
+     * See DataSet/copyPage.csv
      */
     public function copyPage()
     {
@@ -511,7 +511,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
      * also note that 314 is NOT a record in the default language
      *
      * @test
-     * @see DataSet/copyPageFreeMode.csv
+     * See DataSet/copyPageFreeMode.csv
      */
     public function copyPageFreeMode()
     {
@@ -526,7 +526,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/localizePageRecord.csv
+     * See DataSet/localizePageRecord.csv
      */
     public function localizePage()
     {
@@ -540,7 +540,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/localizeNCopyPage.csv
+     * See DataSet/localizeNCopyPage.csv
      */
     public function localizeAndCopyPage()
     {
@@ -555,7 +555,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/localizePageWSynchronization.csv
+     * See DataSet/localizePageWSynchronization.csv
      */
     public function localizePageWithLanguageSynchronization()
     {
@@ -569,7 +569,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/localizeNCopyPageWSynchronization.csv
+     * See DataSet/localizeNCopyPageWSynchronization.csv
      */
     public function localizeAndCopyPageWithLanguageSynchronization()
     {
@@ -584,7 +584,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/changePageRecordSorting.csv
+     * See DataSet/changePageRecordSorting.csv
      */
     public function changePageSorting()
     {
@@ -600,7 +600,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/movePageRecordToDifferentPage.csv
+     * See DataSet/movePageRecordToDifferentPage.csv
      */
     public function movePageToDifferentPage()
     {
@@ -616,7 +616,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Regular\A
 
     /**
      * @test
-     * @see DataSet/movePageRecordToDifferentPageAndChangeSorting.csv
+     * See DataSet/movePageRecordToDifferentPageAndChangeSorting.csv
      */
     public function movePageToDifferentPageAndChangeSorting()
     {
diff --git a/typo3/sysext/core/Tests/Functional/DataHandling/Regular/MultiSiteTest.php b/typo3/sysext/core/Tests/Functional/DataHandling/Regular/MultiSiteTest.php
index cbe32a7177b194727431322354e265602b4ee63e..ffb176af829b99ffd27f9e2544c6128cb942182b 100644
--- a/typo3/sysext/core/Tests/Functional/DataHandling/Regular/MultiSiteTest.php
+++ b/typo3/sysext/core/Tests/Functional/DataHandling/Regular/MultiSiteTest.php
@@ -53,7 +53,7 @@ class MultiSiteTest extends AbstractDataHandlerActionTestCase
 
     /**
      * @test
-     * @see DataSet/moveRootPageToDifferentPageTree.csv
+     * See DataSet/moveRootPageToDifferentPageTree.csv
      */
     public function moveRootPageToDifferentPageTree()
     {
diff --git a/typo3/sysext/core/Tests/Functional/DataHandling/Select/AbstractActionTestCase.php b/typo3/sysext/core/Tests/Functional/DataHandling/Select/AbstractActionTestCase.php
index 657978d2bb40b1b0099d953198045db0c0df4626..c620e0aa22f022a20b129e5390288b9b75e1158b 100644
--- a/typo3/sysext/core/Tests/Functional/DataHandling/Select/AbstractActionTestCase.php
+++ b/typo3/sysext/core/Tests/Functional/DataHandling/Select/AbstractActionTestCase.php
@@ -56,7 +56,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
      */
 
     /**
-     * @see DataSet/addElementRelation.csv
+     * See DataSet/addElementRelation.csv
      */
     public function addElementRelation()
     {
@@ -69,7 +69,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/deleteElementRelation.csv
+     * See DataSet/deleteElementRelation.csv
      */
     public function deleteElementRelation()
     {
@@ -82,7 +82,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/changeElementSorting.csv
+     * See DataSet/changeElementSorting.csv
      */
     public function changeElementSorting()
     {
@@ -90,7 +90,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/changeElementRelationSorting.csv
+     * See DataSet/changeElementRelationSorting.csv
      */
     public function changeElementRelationSorting()
     {
@@ -103,7 +103,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/createContentNAddRelation.csv
+     * See DataSet/createContentNAddRelation.csv
      */
     public function createContentAndAddElementRelation()
     {
@@ -116,7 +116,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/createContentNCreateRelation.csv
+     * See DataSet/createContentNCreateRelation.csv
      */
     public function createContentAndCreateElementRelation()
     {
@@ -128,7 +128,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/modifyElementOfRelation.csv
+     * See DataSet/modifyElementOfRelation.csv
      */
     public function modifyElementOfRelation()
     {
@@ -136,7 +136,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/modifyContentOfRelation.csv
+     * See DataSet/modifyContentOfRelation.csv
      */
     public function modifyContentOfRelation()
     {
@@ -144,7 +144,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/modifyBothSidesOfRelation.csv
+     * See DataSet/modifyBothSidesOfRelation.csv
      */
     public function modifyBothSidesOfRelation()
     {
@@ -153,7 +153,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/deleteContentOfRelation.csv
+     * See DataSet/deleteContentOfRelation.csv
      */
     public function deleteContentOfRelation()
     {
@@ -161,7 +161,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/deleteElementOfRelation.csv
+     * See DataSet/deleteElementOfRelation.csv
      */
     public function deleteElementOfRelation()
     {
@@ -169,7 +169,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/copyContentOfRelation.csv
+     * See DataSet/copyContentOfRelation.csv
      */
     public function copyContentOfRelation()
     {
@@ -178,7 +178,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/copyElementOfRelation.csv
+     * See DataSet/copyElementOfRelation.csv
      */
     public function copyElementOfRelation()
     {
@@ -187,7 +187,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/copyContentToLanguageOfRelation.csv
+     * See DataSet/copyContentToLanguageOfRelation.csv
      */
     public function copyContentToLanguageOfRelation()
     {
@@ -196,7 +196,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/copyElementToLanguageOfRelation.csv
+     * See DataSet/copyElementToLanguageOfRelation.csv
      */
     public function copyElementToLanguageOfRelation()
     {
@@ -205,7 +205,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/localizeContentOfRelation.csv
+     * See DataSet/localizeContentOfRelation.csv
      */
     public function localizeContentOfRelation()
     {
@@ -214,7 +214,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/localizeElementOfRelation.csv
+     * See DataSet/localizeElementOfRelation.csv
      */
     public function localizeElementOfRelation()
     {
@@ -223,7 +223,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/moveContentOfRelationToDifferentPage.csv
+     * See DataSet/moveContentOfRelationToDifferentPage.csv
      */
     public function moveContentOfRelationToDifferentPage()
     {
diff --git a/typo3/sysext/core/Tests/Functional/DataHandling/Select/Modify/ActionTest.php b/typo3/sysext/core/Tests/Functional/DataHandling/Select/Modify/ActionTest.php
index 0bf40d69a2954bb72324cdd09562177f81fffc31..2a1e7c78a49abc09c652d2c7522c39152aa9a79d 100644
--- a/typo3/sysext/core/Tests/Functional/DataHandling/Select/Modify/ActionTest.php
+++ b/typo3/sysext/core/Tests/Functional/DataHandling/Select/Modify/ActionTest.php
@@ -30,7 +30,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Select\Ab
 
     /**
      * @test
-     * @see DataSet/addElementRelation.csv
+     * See DataSet/addElementRelation.csv
      */
     public function addElementRelation()
     {
@@ -45,7 +45,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Select\Ab
 
     /**
      * @test
-     * @see DataSet/deleteElementRelation.csv
+     * See DataSet/deleteElementRelation.csv
      */
     public function deleteElementRelation()
     {
@@ -63,7 +63,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Select\Ab
 
     /**
      * @test
-     * @see DataSet/changeElementSorting.csv
+     * See DataSet/changeElementSorting.csv
      */
     public function changeElementSorting()
     {
@@ -78,7 +78,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Select\Ab
 
     /**
      * @test
-     * @see DataSet/changeElementRelationSorting.csv
+     * See DataSet/changeElementRelationSorting.csv
      */
     public function changeElementRelationSorting()
     {
@@ -93,7 +93,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Select\Ab
 
     /**
      * @test
-     * @see DataSet/createContentNAddRelation.csv
+     * See DataSet/createContentNAddRelation.csv
      */
     public function createContentAndAddElementRelation()
     {
@@ -110,7 +110,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Select\Ab
 
     /**
      * @test
-     * @see DataSet/createContentNCreateRelation.csv
+     * See DataSet/createContentNCreateRelation.csv
      */
     public function createContentAndCreateElementRelation()
     {
@@ -127,7 +127,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Select\Ab
 
     /**
      * @test
-     * @see DataSet/modifyElementOfRelation.csv
+     * See DataSet/modifyElementOfRelation.csv
      */
     public function modifyElementOfRelation()
     {
@@ -142,7 +142,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Select\Ab
 
     /**
      * @test
-     * @see DataSet/modifyContentOfRelation.csv
+     * See DataSet/modifyContentOfRelation.csv
      */
     public function modifyContentOfRelation()
     {
@@ -156,7 +156,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Select\Ab
 
     /**
      * @test
-     * @see DataSet/modifyBothSidesOfRelation.csv
+     * See DataSet/modifyBothSidesOfRelation.csv
      */
     public function modifyBothSidesOfRelation()
     {
@@ -173,7 +173,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Select\Ab
 
     /**
      * @test
-     * @see DataSet/deleteContentOfRelation.csv
+     * See DataSet/deleteContentOfRelation.csv
      */
     public function deleteContentOfRelation()
     {
@@ -187,7 +187,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Select\Ab
 
     /**
      * @test
-     * @see DataSet/deleteElementOfRelation.csv
+     * See DataSet/deleteElementOfRelation.csv
      */
     public function deleteElementOfRelation()
     {
@@ -202,7 +202,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Select\Ab
 
     /**
      * @test
-     * @see DataSet/copyContentOfRelation.csv
+     * See DataSet/copyContentOfRelation.csv
      */
     public function copyContentOfRelation()
     {
@@ -217,7 +217,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Select\Ab
 
     /**
      * @test
-     * @see DataSet/copyElementOfRelation.csv
+     * See DataSet/copyElementOfRelation.csv
      */
     public function copyElementOfRelation()
     {
@@ -236,7 +236,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Select\Ab
 
     /**
      * @test
-     * @see DataSet/copyContentToLanguageOfRelation.csv
+     * See DataSet/copyContentToLanguageOfRelation.csv
      */
     public function copyContentToLanguageOfRelation()
     {
@@ -251,7 +251,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Select\Ab
 
     /**
      * @test
-     * @see DataSet/copyElementToLanguageOfRelation.csv
+     * See DataSet/copyElementToLanguageOfRelation.csv
      */
     public function copyElementToLanguageOfRelation()
     {
@@ -268,7 +268,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Select\Ab
 
     /**
      * @test
-     * @see DataSet/localizeContentOfRelation.csv
+     * See DataSet/localizeContentOfRelation.csv
      */
     public function localizeContentOfRelation()
     {
@@ -283,7 +283,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Select\Ab
 
     /**
      * @test
-     * @see DataSet/localizeElementOfRelation.csv
+     * See DataSet/localizeElementOfRelation.csv
      */
     public function localizeElementOfRelation()
     {
@@ -300,7 +300,7 @@ class ActionTest extends \TYPO3\CMS\Core\Tests\Functional\DataHandling\Select\Ab
 
     /**
      * @test
-     * @see DataSet/moveContentOfRelationToDifferentPage.csv
+     * See DataSet/moveContentOfRelationToDifferentPage.csv
      */
     public function moveContentOfRelationToDifferentPage()
     {
diff --git a/typo3/sysext/core/Tests/Functional/Fixtures/Extensions/irre_tutorial/Classes/Domain/Model/Content.php b/typo3/sysext/core/Tests/Functional/Fixtures/Extensions/irre_tutorial/Classes/Domain/Model/Content.php
index 897eeeb71a42e7c47a9b6998a8cfbc2dd20dcada..3b8ff1a3ad4752b4a0904fd83724c9a7bdaada9f 100644
--- a/typo3/sysext/core/Tests/Functional/Fixtures/Extensions/irre_tutorial/Classes/Domain/Model/Content.php
+++ b/typo3/sysext/core/Tests/Functional/Fixtures/Extensions/irre_tutorial/Classes/Domain/Model/Content.php
@@ -54,7 +54,7 @@ class Content extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
     }
 
     /**
-     * @return \TYPO3\CMS\Extbase\Persistence\ObjectStorage<\OliverHader\IrreTutorial\Domain\Model\Hotel>
+     * @return \TYPO3\CMS\Extbase\Persistence\ObjectStorage
      */
     public function getHotels()
     {
@@ -62,7 +62,7 @@ class Content extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
     }
 
     /**
-     * @param \TYPO3\CMS\Extbase\Persistence\ObjectStorage<\OliverHader\IrreTutorial\Domain\Model\Hotel> $hotels
+     * @param \TYPO3\CMS\Extbase\Persistence\ObjectStorage $hotels
      */
     public function setHotels(\TYPO3\CMS\Extbase\Persistence\ObjectStorage $hotels)
     {
diff --git a/typo3/sysext/core/Tests/Functional/Fixtures/Extensions/irre_tutorial/Classes/Domain/Model/Hotel.php b/typo3/sysext/core/Tests/Functional/Fixtures/Extensions/irre_tutorial/Classes/Domain/Model/Hotel.php
index 68c2553cbf35cb8e6c96adeb8359b65808c674fb..ad81d8e944c554148c905120b4165e6eb50685bc 100644
--- a/typo3/sysext/core/Tests/Functional/Fixtures/Extensions/irre_tutorial/Classes/Domain/Model/Hotel.php
+++ b/typo3/sysext/core/Tests/Functional/Fixtures/Extensions/irre_tutorial/Classes/Domain/Model/Hotel.php
@@ -57,7 +57,7 @@ class Hotel extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
     }
 
     /**
-     * @return \TYPO3\CMS\Extbase\Persistence\ObjectStorage<\OliverHader\IrreTutorial\Domain\Model\Offer>
+     * @return \TYPO3\CMS\Extbase\Persistence\ObjectStorage
      */
     public function getOffers()
     {
@@ -65,7 +65,7 @@ class Hotel extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
     }
 
     /**
-     * @param \TYPO3\CMS\Extbase\Persistence\ObjectStorage<\OliverHader\IrreTutorial\Domain\Model\Offer> $offers
+     * @param \TYPO3\CMS\Extbase\Persistence\ObjectStorage $offers
      */
     public function setOffers(\TYPO3\CMS\Extbase\Persistence\ObjectStorage $offers)
     {
diff --git a/typo3/sysext/core/Tests/Functional/Fixtures/Extensions/irre_tutorial/Classes/Domain/Model/Offer.php b/typo3/sysext/core/Tests/Functional/Fixtures/Extensions/irre_tutorial/Classes/Domain/Model/Offer.php
index e4ad397b5ad0dbbcaece883994f905d685de05b5..0fd6e9181116257740adc84e4c5ef1b8f3622626 100644
--- a/typo3/sysext/core/Tests/Functional/Fixtures/Extensions/irre_tutorial/Classes/Domain/Model/Offer.php
+++ b/typo3/sysext/core/Tests/Functional/Fixtures/Extensions/irre_tutorial/Classes/Domain/Model/Offer.php
@@ -57,7 +57,7 @@ class Offer extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
     }
 
     /**
-     * @return \TYPO3\CMS\Extbase\Persistence\ObjectStorage<\OliverHader\IrreTutorial\Domain\Model\Offer>
+     * @return \TYPO3\CMS\Extbase\Persistence\ObjectStorage
      */
     public function getPrices()
     {
@@ -65,7 +65,7 @@ class Offer extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
     }
 
     /**
-     * @param \TYPO3\CMS\Extbase\Persistence\ObjectStorage<\OliverHader\IrreTutorial\Domain\Model\Offer> $prices
+     * @param \TYPO3\CMS\Extbase\Persistence\ObjectStorage $prices
      */
     public function setPrices(\TYPO3\CMS\Extbase\Persistence\ObjectStorage $prices)
     {
diff --git a/typo3/sysext/core/Tests/Unit/Database/Query/Restriction/AbstractRestrictionTestCase.php b/typo3/sysext/core/Tests/Unit/Database/Query/Restriction/AbstractRestrictionTestCase.php
index bb84ba036e84076c453a16eecd91df186eb5a849..969b7738ad893b8ef1c8b370cfbfc6a267af1308 100644
--- a/typo3/sysext/core/Tests/Unit/Database/Query/Restriction/AbstractRestrictionTestCase.php
+++ b/typo3/sysext/core/Tests/Unit/Database/Query/Restriction/AbstractRestrictionTestCase.php
@@ -25,7 +25,7 @@ use TYPO3\TestingFramework\Core\Unit\UnitTestCase;
 class AbstractRestrictionTestCase extends UnitTestCase
 {
     /**
-     * @var \TYPO3\CMS\Core\Database\Query\Expression\ExpressionBuilder;
+     * @var \TYPO3\CMS\Core\Database\Query\Expression\ExpressionBuilder
      */
     protected $expressionBuilder;
 
diff --git a/typo3/sysext/core/Tests/Unit/Utility/GeneralUtilityTest.php b/typo3/sysext/core/Tests/Unit/Utility/GeneralUtilityTest.php
index 8fb2c1648da36c1af00e0e9bceb448158c4a7d53..5236cffa7c88f5d1ec13e340e5e2242d9fe527bc 100644
--- a/typo3/sysext/core/Tests/Unit/Utility/GeneralUtilityTest.php
+++ b/typo3/sysext/core/Tests/Unit/Utility/GeneralUtilityTest.php
@@ -3430,7 +3430,7 @@ class GeneralUtilityTest extends UnitTestCase
     /////////////////////////////
     /**
      * @see dirnameWithDataProvider
-     * @return array<array>
+     * @return array|array[]
      */
     public function dirnameDataProvider()
     {
@@ -3461,7 +3461,7 @@ class GeneralUtilityTest extends UnitTestCase
     /////////////////////////////////////
     /**
      * @see resolveBackPathWithDataProvider
-     * @return array<array>
+     * @return array|array[]
      */
     public function resolveBackPathDataProvider()
     {
diff --git a/typo3/sysext/core/Tests/Unit/Utility/RootlineUtilityTest.php b/typo3/sysext/core/Tests/Unit/Utility/RootlineUtilityTest.php
index fb5aa0ce6a62938e77b4ac2c7bd825bf782ce8c1..239f5f9677abf34c5ef6bd89bb3faf8520a3f033 100644
--- a/typo3/sysext/core/Tests/Unit/Utility/RootlineUtilityTest.php
+++ b/typo3/sysext/core/Tests/Unit/Utility/RootlineUtilityTest.php
@@ -70,7 +70,7 @@ class RootlineUtilityTest extends UnitTestCase
      * Tests that $subsetCandidate is completely part of $superset
      * and keys match.
      *
-     * @see (A ^ B) = A <=> A c B
+     * See (A ^ B) = A <=> A c B
      * @param array $subsetCandidate
      * @param array $superset
      */
diff --git a/typo3/sysext/extbase/Classes/Mvc/Web/Routing/UriBuilder.php b/typo3/sysext/extbase/Classes/Mvc/Web/Routing/UriBuilder.php
index 0cdfb78715962006f75ca4b2c893467b9f8780fc..a09e7daf7d3bbf5e8b9b5f52a66b764924c2c5e5 100644
--- a/typo3/sysext/extbase/Classes/Mvc/Web/Routing/UriBuilder.php
+++ b/typo3/sysext/extbase/Classes/Mvc/Web/Routing/UriBuilder.php
@@ -298,7 +298,7 @@ class UriBuilder
      *
      * @param bool $addQueryString
      * @return static the current UriBuilder to allow method chaining
-     * @see TSref/typolink.addQueryString
+     * @see https://docs.typo3.org/m/typo3/reference-typoscript/master/en-us/Functions/Typolink.html#addquerystring
      */
     public function setAddQueryString(bool $addQueryString): UriBuilder
     {
@@ -327,7 +327,7 @@ class UriBuilder
      *
      * @param string $addQueryStringMethod
      * @return static the current UriBuilder to allow method chaining
-     * @see TSref/typolink.addQueryString.method
+     * @see https://docs.typo3.org/m/typo3/reference-typoscript/master/en-us/Functions/Typolink.html#addquerystring
      */
     public function setAddQueryStringMethod(string $addQueryStringMethod): UriBuilder
     {
@@ -357,7 +357,7 @@ class UriBuilder
      *
      * @param array $argumentsToBeExcludedFromQueryString
      * @return static the current UriBuilder to allow method chaining
-     * @see TSref/typolink.addQueryString.exclude
+     * @see https://docs.typo3.org/m/typo3/reference-typoscript/master/en-us/Functions/Typolink.html#addquerystring
      * @see setAddQueryString()
      */
     public function setArgumentsToBeExcludedFromQueryString(array $argumentsToBeExcludedFromQueryString): UriBuilder
@@ -733,7 +733,7 @@ class UriBuilder
      * Builds a TypoLink configuration array from the current settings
      *
      * @return array typolink configuration array
-     * @see TSref/typolink
+     * @see https://docs.typo3.org/m/typo3/reference-typoscript/master/en-us/Functions/Typolink.html
      */
     protected function buildTypolinkConfiguration(): array
     {
diff --git a/typo3/sysext/extbase/Classes/Reflection/ClassSchema.php b/typo3/sysext/extbase/Classes/Reflection/ClassSchema.php
index 2b3e7246132e2788c76bb358566ed98ed9d6c443..eae84c8d37d25f068e03cae8caed7df61aeb717d 100644
--- a/typo3/sysext/extbase/Classes/Reflection/ClassSchema.php
+++ b/typo3/sysext/extbase/Classes/Reflection/ClassSchema.php
@@ -107,7 +107,7 @@ class ClassSchema
     private static $propertyInfoExtractor;
 
     /**
-     * @var
+     * @var DocBlockFactory
      */
     private static $docBlockFactory;
 
diff --git a/typo3/sysext/extbase/Tests/Functional/Fixtures/Extensions/blog_example/Classes/Domain/Model/Person.php b/typo3/sysext/extbase/Tests/Functional/Fixtures/Extensions/blog_example/Classes/Domain/Model/Person.php
index 3025a3930a8f8033ca75aa05f183624cf5c23a69..92b67cde92c9efaa4d2a8ffb5223b91d7bb89b4d 100644
--- a/typo3/sysext/extbase/Tests/Functional/Fixtures/Extensions/blog_example/Classes/Domain/Model/Person.php
+++ b/typo3/sysext/extbase/Tests/Functional/Fixtures/Extensions/blog_example/Classes/Domain/Model/Person.php
@@ -136,7 +136,7 @@ class Person extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
     }
 
     /**
-     * @param \TYPO3\CMS\Extbase\Persistence\ObjectStorage<\ExtbaseTeam\BlogExample\Domain\Model\Tag> $tags
+     * @param \TYPO3\CMS\Extbase\Persistence\ObjectStorage $tags
      */
     public function setTags(\TYPO3\CMS\Extbase\Persistence\ObjectStorage $tags)
     {
@@ -168,7 +168,7 @@ class Person extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
     }
 
     /**
-     * @param \TYPO3\CMS\Extbase\Persistence\ObjectStorage<\ExtbaseTeam\BlogExample\Domain\Model\Tag> $tagsSpecial
+     * @param \TYPO3\CMS\Extbase\Persistence\ObjectStorage $tagsSpecial
      */
     public function setTagsSpecial(\TYPO3\CMS\Extbase\Persistence\ObjectStorage $tagsSpecial)
     {
diff --git a/typo3/sysext/extbase/Tests/Functional/Persistence/QueryLocalizedDataTest.php b/typo3/sysext/extbase/Tests/Functional/Persistence/QueryLocalizedDataTest.php
index 0a3dc1bc97c260a6090f6aa78b0eb739ca71dc15..cc347c43e673ec20184f4003794d745cde0dee87 100644
--- a/typo3/sysext/extbase/Tests/Functional/Persistence/QueryLocalizedDataTest.php
+++ b/typo3/sysext/extbase/Tests/Functional/Persistence/QueryLocalizedDataTest.php
@@ -49,7 +49,7 @@ class QueryLocalizedDataTest extends \TYPO3\TestingFramework\Core\Functional\Fun
     protected $postRepository;
 
     /**
-     * @var PersistenceManager;
+     * @var PersistenceManager
      */
     protected $persistenceManager;
 
diff --git a/typo3/sysext/extensionmanager/Classes/Domain/Model/DownloadQueue.php b/typo3/sysext/extensionmanager/Classes/Domain/Model/DownloadQueue.php
index e4595c6ca942bec711d424c631f61747de179e93..6917bb5be4d90515cc7aaddc59cb697971963a39 100644
--- a/typo3/sysext/extensionmanager/Classes/Domain/Model/DownloadQueue.php
+++ b/typo3/sysext/extensionmanager/Classes/Domain/Model/DownloadQueue.php
@@ -25,7 +25,7 @@ class DownloadQueue implements \TYPO3\CMS\Core\SingletonInterface
     /**
      * Storage for extensions to be downloaded
      *
-     * @var Extension[string][string]
+     * @var array|string[]
      */
     protected $extensionStorage = [];
 
diff --git a/typo3/sysext/extensionmanager/Classes/Domain/Model/Mirrors.php b/typo3/sysext/extensionmanager/Classes/Domain/Model/Mirrors.php
index 7d681238f92f3c51d115ceeba02810db20297281..f97acc21f0e6e526ae3cbeb706dc75db072392f0 100644
--- a/typo3/sysext/extensionmanager/Classes/Domain/Model/Mirrors.php
+++ b/typo3/sysext/extensionmanager/Classes/Domain/Model/Mirrors.php
@@ -48,7 +48,6 @@ class Mirrors extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
      * Method selects one specific mirror to be used.
      *
      * @param int $mirrorId number (>=1) of mirror or NULL for random selection
-     * @see $currentMirror
      */
     public function setSelect($mirrorId = null)
     {
@@ -97,7 +96,7 @@ class Mirrors extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
      * Method returns all available mirrors.
      *
      * @return array multidimensional array with mirrors and their properties
-     * @see $mirrors, setMirrors()
+     * @see setMirrors()
      */
     public function getMirrors()
     {
@@ -108,7 +107,7 @@ class Mirrors extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
      * Method sets available mirrors.
      *
      * @param array $mirrors multidimensional array with mirrors and their properties
-     * @see $mirrors, getMirrors()
+     * @see getMirrors()
      */
     public function setMirrors(array $mirrors)
     {
diff --git a/typo3/sysext/extensionmanager/Classes/Domain/Model/Repository.php b/typo3/sysext/extensionmanager/Classes/Domain/Model/Repository.php
index 6de7e657762b6d328e232d79d80f3c375e1a7da7..2ece508bf55b089d87b4dca5da80e4f929a56baa 100644
--- a/typo3/sysext/extensionmanager/Classes/Domain/Model/Repository.php
+++ b/typo3/sysext/extensionmanager/Classes/Domain/Model/Repository.php
@@ -73,7 +73,7 @@ class Repository extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
      * Method returns title of a repository.
      *
      * @return string title of repository
-     * @see $title, setTitle()
+     * @see setTitle()
      */
     public function getTitle()
     {
@@ -84,7 +84,7 @@ class Repository extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
      * Method sets title of a repository.
      *
      * @param string $title title of repository to set
-     * @see $title, getTitle()
+     * @see getTitle()
      */
     public function setTitle($title)
     {
@@ -97,7 +97,7 @@ class Repository extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
      * Method returns description of a repository.
      *
      * @return string title of repository
-     * @see $title, setTitle()
+     * @see setDescription()
      */
     public function getDescription()
     {
@@ -120,7 +120,7 @@ class Repository extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
      * Method returns URL of a resource that contains repository mirrors.
      *
      * @return string URL of file that contains repository mirrors
-     * @see $mirrorListUrl, getMirrorListUrl()
+     * @see getMirrorListUrl()
      */
     public function getMirrorListUrl()
     {
@@ -133,7 +133,7 @@ class Repository extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
      * Parameter is typically a remote gzipped xml file.
      *
      * @param string $url URL of file that contains repository mirrors
-     * @see $mirrorListUrl, getMirrorListUrl()
+     * @see getMirrorListUrl()
      */
     public function setMirrorListUrl($url)
     {
@@ -146,7 +146,7 @@ class Repository extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
      * Method returns URL of repository WSDL.
      *
      * @return string URL of repository WSDL
-     * @see $wsdlUrl, setWsdlUrl()
+     * @see setWsdlUrl()
      */
     public function getWsdlUrl()
     {
@@ -157,7 +157,7 @@ class Repository extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
      * Method sets URL of repository WSDL.
      *
      * @param string $url URL of repository WSDL
-     * @see $wsdlUrl, getWsdlUrl()
+     * @see getWsdlUrl()
      */
     public function setWsdlUrl($url)
     {
@@ -212,7 +212,9 @@ class Repository extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
      * Repository mirrors object is passed by reference.
      *
      * @param \TYPO3\CMS\Extensionmanager\Domain\Model\Mirrors $mirrors mirror list
-     * @see $mirrors, getMirrors(), hasMirrors(), removeMirrors()
+     * @see getMirrors()
+     * @see hasMirrors()
+     * @see removeMirrors()
      */
     public function addMirrors(\TYPO3\CMS\Extensionmanager\Domain\Model\Mirrors $mirrors)
     {
@@ -224,7 +226,9 @@ class Repository extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
      * object has been registered to this repository.
      *
      * @return bool TRUE, if a repository mirrors object has been registered, otherwise FALSE
-     * @see $mirrors, addMirrors(), getMirrors(), removeMirrors()
+     * @see addMirrors()
+     * @see getMirrors()
+     * @see removeMirrors()
      */
     public function hasMirrors()
     {
@@ -239,7 +243,9 @@ class Repository extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
      * Method returns a repository mirrors object.
      *
      * @return \TYPO3\CMS\Extensionmanager\Domain\Model\Mirrors mirrors for repository
-     * @see $mirrors, addMirrors(), hasMirrors(), removeMirrors()
+     * @see addMirrors()
+     * @see hasMirrors()
+     * @see removeMirrors()
      */
     public function getMirrors()
     {
@@ -249,7 +255,9 @@ class Repository extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
     /**
      * Method unregisters a repository mirrors object.
      *
-     * @see $mirrors, addMirrors(), getMirrors(), hasMirrors()
+     * @see addMirrors()
+     * @see getMirrors()
+     * @see hasMirrors()
      */
     public function removeMirrors()
     {
diff --git a/typo3/sysext/extensionmanager/Classes/Utility/Connection/TerUtility.php b/typo3/sysext/extensionmanager/Classes/Utility/Connection/TerUtility.php
index 8acf85d5773eea3184a59dce121ddc503810c6e4..61628d7a75e5fb4a1041d5537779b38134590b8e 100644
--- a/typo3/sysext/extensionmanager/Classes/Utility/Connection/TerUtility.php
+++ b/typo3/sysext/extensionmanager/Classes/Utility/Connection/TerUtility.php
@@ -76,7 +76,8 @@ class TerUtility
      * @param string $externalData Data stream from remove server
      * @throws ExtensionManagerException
      * @return array $externalData
-     * @see fetchServerData(), processRepositoryReturnData()
+     * @see fetchServerData()
+     * @see processRepositoryReturnData()
      */
     public function decodeServerData($externalData)
     {
diff --git a/typo3/sysext/extensionmanager/Classes/Utility/Parser/AbstractExtensionXmlParser.php b/typo3/sysext/extensionmanager/Classes/Utility/Parser/AbstractExtensionXmlParser.php
index 675a520db9a6fe046d45a3d4dc43dbfe4226ca5c..ef40db4601f84f3ae1d234227a39f865fcaa55db 100644
--- a/typo3/sysext/extensionmanager/Classes/Utility/Parser/AbstractExtensionXmlParser.php
+++ b/typo3/sysext/extensionmanager/Classes/Utility/Parser/AbstractExtensionXmlParser.php
@@ -147,7 +147,6 @@ abstract class AbstractExtensionXmlParser extends AbstractXmlParser
      * state, reviewstate, category, lastuploaddate, uploadcomment, dependencies,
      * authorname, authoremail, authorcompany, ownerusername, t3xfilemd5
      *
-     * @see $extensionKey, $version, $extensionDownloadCounter,
      * @return array assoziative array of an extension version's properties
      */
     public function getAll()
@@ -177,7 +176,7 @@ abstract class AbstractExtensionXmlParser extends AbstractXmlParser
      * Returns download number sum of all extension's versions.
      *
      * @return string download number sum
-     * @see $extensionDLCounter, getAll()
+     * @see getAll()
      */
     public function getAlldownloadcounter()
     {
@@ -188,7 +187,7 @@ abstract class AbstractExtensionXmlParser extends AbstractXmlParser
      * Returns company name of extension author.
      *
      * @return string company name of extension author
-     * @see $authorcompany, getAll()
+     * @see getAll()
      */
     public function getAuthorcompany()
     {
@@ -199,7 +198,7 @@ abstract class AbstractExtensionXmlParser extends AbstractXmlParser
      * Returns e-mail address of extension author.
      *
      * @return string e-mail address of extension author
-     * @see $authoremail, getAll()
+     * @see getAll()
      */
     public function getAuthoremail()
     {
@@ -210,7 +209,7 @@ abstract class AbstractExtensionXmlParser extends AbstractXmlParser
      * Returns name of extension author.
      *
      * @return string name of extension author
-     * @see $authorname, getAll()
+     * @see getAll()
      */
     public function getAuthorname()
     {
@@ -221,7 +220,7 @@ abstract class AbstractExtensionXmlParser extends AbstractXmlParser
      * Returns category of an extension.
      *
      * @return string extension category
-     * @see $category, getAll()
+     * @see getAll()
      */
     public function getCategory()
     {
@@ -232,7 +231,7 @@ abstract class AbstractExtensionXmlParser extends AbstractXmlParser
      * Returns dependencies of an extension's version.
      *
      * @return string extension dependencies
-     * @see $dependencies, getAll()
+     * @see getAll()
      */
     public function getDependencies()
     {
@@ -243,7 +242,7 @@ abstract class AbstractExtensionXmlParser extends AbstractXmlParser
      * Returns description of an extension's version.
      *
      * @return string extension description
-     * @see $description, getAll()
+     * @see getAll()
      */
     public function getDescription()
     {
@@ -254,7 +253,7 @@ abstract class AbstractExtensionXmlParser extends AbstractXmlParser
      * Returns download number of an extension's version.
      *
      * @return string download number
-     * @see $versionDLCounter, getAll()
+     * @see getAll()
      */
     public function getDownloadcounter()
     {
@@ -265,7 +264,7 @@ abstract class AbstractExtensionXmlParser extends AbstractXmlParser
      * Returns key of an extension.
      *
      * @return string extension key
-     * @see $extensionKey, getAll()
+     * @see getAll()
      */
     public function getExtkey()
     {
@@ -276,7 +275,7 @@ abstract class AbstractExtensionXmlParser extends AbstractXmlParser
      * Returns last uploaddate of an extension's version.
      *
      * @return string last upload date of an extension's version
-     * @see $lastuploaddate, getAll()
+     * @see getAll()
      */
     public function getLastuploaddate()
     {
@@ -287,7 +286,7 @@ abstract class AbstractExtensionXmlParser extends AbstractXmlParser
      * Returns username of extension owner.
      *
      * @return string extension owner's username
-     * @see $ownerusername, getAll()
+     * @see getAll()
      */
     public function getOwnerusername()
     {
@@ -298,7 +297,7 @@ abstract class AbstractExtensionXmlParser extends AbstractXmlParser
      * Returns review state of an extension's version.
      *
      * @return string extension review state
-     * @see $reviewstate, getAll()
+     * @see getAll()
      */
     public function getReviewstate()
     {
@@ -309,7 +308,7 @@ abstract class AbstractExtensionXmlParser extends AbstractXmlParser
      * Returns state of an extension's version.
      *
      * @return string extension state
-     * @see $state, getAll()
+     * @see getAll()
      */
     public function getState()
     {
@@ -320,7 +319,7 @@ abstract class AbstractExtensionXmlParser extends AbstractXmlParser
      * Returns t3x file hash of an extension's version.
      *
      * @return string t3x file hash
-     * @see $t3xfilemd5, getAll()
+     * @see getAll()
      */
     public function getT3xfilemd5()
     {
@@ -331,7 +330,7 @@ abstract class AbstractExtensionXmlParser extends AbstractXmlParser
      * Returns title of an extension's version.
      *
      * @return string extension title
-     * @see $title, getAll()
+     * @see getAll()
      */
     public function getTitle()
     {
@@ -342,7 +341,7 @@ abstract class AbstractExtensionXmlParser extends AbstractXmlParser
      * Returns extension upload comment.
      *
      * @return string extension upload comment
-     * @see $uploadcomment, getAll()
+     * @see getAll()
      */
     public function getUploadcomment()
     {
@@ -353,7 +352,7 @@ abstract class AbstractExtensionXmlParser extends AbstractXmlParser
      * Returns version number.
      *
      * @return string version number
-     * @see $version, getAll()
+     * @see getAll()
      */
     public function getVersion()
     {
@@ -364,7 +363,6 @@ abstract class AbstractExtensionXmlParser extends AbstractXmlParser
      * Method resets version class properties.
      *
      * @param bool $resetAll If TRUE, additionally extension properties are reset
-     * @see $extensionKey, $version, $extensionDLCounter, $versionDLCounter,
      */
     protected function resetProperties($resetAll = false)
     {
diff --git a/typo3/sysext/extensionmanager/Classes/Utility/Parser/AbstractMirrorXmlParser.php b/typo3/sysext/extensionmanager/Classes/Utility/Parser/AbstractMirrorXmlParser.php
index c8645b1bb2161207051e8d648e23dbb8df4b8bac..fd4dbb73e67008f949c31b9ccd6450a94bbbb835 100644
--- a/typo3/sysext/extensionmanager/Classes/Utility/Parser/AbstractMirrorXmlParser.php
+++ b/typo3/sysext/extensionmanager/Classes/Utility/Parser/AbstractMirrorXmlParser.php
@@ -76,7 +76,6 @@ abstract class AbstractMirrorXmlParser extends AbstractXmlParser
      * country, host, path, sponsorlink, sponsorlogo, sponsorname, title
      *
      * @return array assoziative array of a mirror's properties
-     * @see $country, $host, $path, $sponsorlink, $sponsorlogo, $sponsorname, $title
      */
     public function getAll()
     {
@@ -95,7 +94,7 @@ abstract class AbstractMirrorXmlParser extends AbstractXmlParser
      * Returns country of currently processed mirror.
      *
      * @return string name of country a mirror is located in
-     * @see $country, getAll()
+     * @see getAll()
      */
     public function getCountry()
     {
@@ -106,7 +105,7 @@ abstract class AbstractMirrorXmlParser extends AbstractXmlParser
      * Returns host of currently processed mirror.
      *
      * @return string host name
-     * @see $host, getAll()
+     * @see getAll()
      */
     public function getHost()
     {
@@ -117,7 +116,7 @@ abstract class AbstractMirrorXmlParser extends AbstractXmlParser
      * Returns path to mirrored TER of currently processed mirror.
      *
      * @return string path name
-     * @see $path, getAll()
+     * @see getAll()
      */
     public function getPath()
     {
@@ -128,7 +127,7 @@ abstract class AbstractMirrorXmlParser extends AbstractXmlParser
      * Returns sponsor link of currently processed mirror.
      *
      * @return string URL of a sponsor's website
-     * @see $sponsorlink, getAll()
+     * @see getAll()
      */
     public function getSponsorlink()
     {
@@ -139,7 +138,7 @@ abstract class AbstractMirrorXmlParser extends AbstractXmlParser
      * Returns sponsor logo location of currently processed mirror.
      *
      * @return string a sponsor's logo location
-     * @see $sponsorlogo, getAll()
+     * @see getAll()
      */
     public function getSponsorlogo()
     {
@@ -150,7 +149,7 @@ abstract class AbstractMirrorXmlParser extends AbstractXmlParser
      * Returns sponsor name of currently processed mirror.
      *
      * @return string name of sponsor
-     * @see $sponsorname, getAll()
+     * @see getAll()
      */
     public function getSponsorname()
     {
@@ -161,7 +160,7 @@ abstract class AbstractMirrorXmlParser extends AbstractXmlParser
      * Returns title of currently processed mirror.
      *
      * @return string title of mirror
-     * @see $title, getAll()
+     * @see getAll()
      */
     public function getTitle()
     {
@@ -170,8 +169,6 @@ abstract class AbstractMirrorXmlParser extends AbstractXmlParser
 
     /**
      * Method resets version class properties.
-     *
-     * @see $country, $host, $path, $sponsorlink, $sponsorlogo, $sponsorname, $title
      */
     protected function resetProperties()
     {
diff --git a/typo3/sysext/extensionmanager/Classes/Utility/Parser/AbstractXmlParser.php b/typo3/sysext/extensionmanager/Classes/Utility/Parser/AbstractXmlParser.php
index 6085140237c432cfbf310ce493052f8794150d6e..4a474590bbfaa774906706ebbb816d7f8cb0c05e 100644
--- a/typo3/sysext/extensionmanager/Classes/Utility/Parser/AbstractXmlParser.php
+++ b/typo3/sysext/extensionmanager/Classes/Utility/Parser/AbstractXmlParser.php
@@ -46,7 +46,8 @@ abstract class AbstractXmlParser implements \SplSubject
      * Method attaches an observer.
      *
      * @param \SplObserver $observer an observer to attach
-     * @see $observers, detach(), notify()
+     * @see detach()
+     * @see notify()
      */
     public function attach(\SplObserver $observer)
     {
@@ -57,7 +58,8 @@ abstract class AbstractXmlParser implements \SplSubject
      * Method detaches an attached observer
      *
      * @param \SplObserver $observer an observer to detach
-     * @see $observers, attach(), notify()
+     * @see attach()
+     * @see notify()
      */
     public function detach(\SplObserver $observer)
     {
@@ -70,7 +72,8 @@ abstract class AbstractXmlParser implements \SplSubject
     /**
      * Method notifies attached observers.
      *
-     * @see $observers, attach(), detach()
+     * @see attach()
+     * @see detach()
      */
     public function notify()
     {
diff --git a/typo3/sysext/extensionmanager/Classes/Utility/Repository/Helper.php b/typo3/sysext/extensionmanager/Classes/Utility/Repository/Helper.php
index 253e903afd955052a6951fa5b200b8ffacc8fd08..2912633a618673911875556df2f492071fd7b74c 100644
--- a/typo3/sysext/extensionmanager/Classes/Utility/Repository/Helper.php
+++ b/typo3/sysext/extensionmanager/Classes/Utility/Repository/Helper.php
@@ -98,7 +98,6 @@ class Helper implements \TYPO3\CMS\Core\SingletonInterface
      * Repository instance is passed by reference.
      *
      * @param Repository $repository
-     * @see $repository
      */
     public function setRepository(Repository $repository)
     {
@@ -137,7 +136,8 @@ class Helper implements \TYPO3\CMS\Core\SingletonInterface
      *
      * @param string $remoteResource remote resource to read contents from
      * @param string $localResource local resource (absolute file path) to store retrieved contents to (must be within typo3temp/)
-     * @see \TYPO3\CMS\Core\Utility\GeneralUtility::getUrl(), \TYPO3\CMS\Core\Utility\GeneralUtility::writeFile()
+     * @see \TYPO3\CMS\Core\Utility\GeneralUtility::getUrl()
+     * @see \TYPO3\CMS\Core\Utility\GeneralUtility::writeFile()
      * @throws ExtensionManagerException
      */
     protected function fetchFile($remoteResource, $localResource)
@@ -246,7 +246,7 @@ class Helper implements \TYPO3\CMS\Core\SingletonInterface
      * Method returns information if currently available
      * extension list might be outdated.
      *
-     * @see \TYPO3\CMS\Extensionmanager\Utility\Repository\Helper::PROBLEM_NO_VERSIONS_IN_DATABASE,
+     * @see \TYPO3\CMS\Extensionmanager\Utility\Repository\Helper::PROBLEM_NO_VERSIONS_IN_DATABASE
      * @throws ExtensionManagerException
      * @return int "0" if everything is perfect, otherwise bitmask with problems
      */
diff --git a/typo3/sysext/form/Classes/Domain/Configuration/ConfigurationService.php b/typo3/sysext/form/Classes/Domain/Configuration/ConfigurationService.php
index fd215da0148a5edf351ceefc60dc69f790266233..4a9e13d03a5343129b66a48c775ad055886fc8ca 100644
--- a/typo3/sysext/form/Classes/Domain/Configuration/ConfigurationService.php
+++ b/typo3/sysext/form/Classes/Domain/Configuration/ConfigurationService.php
@@ -136,7 +136,7 @@ class ConfigurationService implements SingletonInterface
      * property paths by one of the above described inspector editor properties (e.g "propertyPath") within
      * the form setup, you must provide the writable property paths with a hook.
      *
-     * @see $this->executeBuildFormDefinitionValidationConfigurationHooks()
+     * @see executeBuildFormDefinitionValidationConfigurationHooks()
      * @param ValidationDto $dto
      * @return bool
      * @internal
@@ -171,7 +171,7 @@ class ConfigurationService implements SingletonInterface
      * property paths by one of the above described inspector editor properties (e.g "propertyPath") within
      * the form setup, you must provide the writable property paths with a hook.
      *
-     * @see $this->executeBuildFormDefinitionValidationConfigurationHooks()
+     * @see executeBuildFormDefinitionValidationConfigurationHooks()
      * @param ValidationDto $dto
      * @return bool
      * @internal
@@ -448,8 +448,8 @@ class ConfigurationService implements SingletonInterface
      * property paths by one of the described inspector editor properties (e.g "propertyPath") within
      * the form setup, you must provide the writable property paths with a hook.
      *
-     * @see $this->isFormElementPropertyDefinedInFormEditorSetup()
-     * @see $this->isPropertyCollectionPropertyDefinedInFormEditorSetup()
+     * @see isFormElementPropertyDefinedInFormEditorSetup()
+     * @see isPropertyCollectionPropertyDefinedInFormEditorSetup()
      * Connect to the hook:
      * $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/form']['buildFormDefinitionValidationConfiguration'][] = \Vendor\YourNamespace\YourClass::class;
      * Use the hook:
diff --git a/typo3/sysext/form/Classes/Domain/Finishers/SaveToDatabaseFinisher.php b/typo3/sysext/form/Classes/Domain/Finishers/SaveToDatabaseFinisher.php
index 858d8f622e743c10700ba52241292bd8a4599455..b468e88bdf8a68b7857147d7765edf7015b6b55d 100644
--- a/typo3/sysext/form/Classes/Domain/Finishers/SaveToDatabaseFinisher.php
+++ b/typo3/sysext/form/Classes/Domain/Finishers/SaveToDatabaseFinisher.php
@@ -38,7 +38,7 @@ use TYPO3\CMS\Form\Domain\Model\FormElements\FormElementInterface;
  *
  *   insert: will create a new database row with the values from the
  *           submitted form and/or some predefined values.
- *           @see options.elements and options.databaseFieldMappings
+ *           See options.elements and options.databaseFieldMappings
  *   update: will update a given database row with the values from the
  *           submitted form and/or some predefined values.
  *           'options.whereClause' is then required.
diff --git a/typo3/sysext/form/Classes/Domain/Model/FormDefinition.php b/typo3/sysext/form/Classes/Domain/Model/FormDefinition.php
index dee8ec23cb44060637d85e1d7e24a89e6b1f719b..58002b02cf61c7f26efd23f64d2f08b59cfd6959 100644
--- a/typo3/sysext/form/Classes/Domain/Model/FormDefinition.php
+++ b/typo3/sysext/form/Classes/Domain/Model/FormDefinition.php
@@ -448,7 +448,7 @@ class FormDefinition extends AbstractCompositeRenderable implements VariableRend
     /**
      * Get the Form's pages
      *
-     * @return array<Page> The Form's pages in the correct order
+     * @return array|Page[] The Form's pages in the correct order
      */
     public function getPages(): array
     {
diff --git a/typo3/sysext/form/Classes/Domain/Runtime/FormRuntime.php b/typo3/sysext/form/Classes/Domain/Runtime/FormRuntime.php
index 354cdebc25e7b2e7c2be2d0c2cb05f159a16ed91..180d0b0e1f5ccb18a27244badfaf3f6f603f899f 100644
--- a/typo3/sysext/form/Classes/Domain/Runtime/FormRuntime.php
+++ b/typo3/sysext/form/Classes/Domain/Runtime/FormRuntime.php
@@ -889,7 +889,7 @@ class FormRuntime implements RootRenderableInterface, \ArrayAccess
     }
 
     /**
-     * @return array<Page> The Form's pages in the correct order
+     * @return array|Page[] The Form's pages in the correct order
      */
     public function getPages(): array
     {
diff --git a/typo3/sysext/form/Classes/Mvc/Configuration/ConfigurationManager.php b/typo3/sysext/form/Classes/Mvc/Configuration/ConfigurationManager.php
index 6b3cbb86729d9a5306b8ac7836ca9c310a2b43ff..208d5890c7a9da62098a697c825cde7cb8abac93 100644
--- a/typo3/sysext/form/Classes/Mvc/Configuration/ConfigurationManager.php
+++ b/typo3/sysext/form/Classes/Mvc/Configuration/ConfigurationManager.php
@@ -190,7 +190,7 @@ class ConfigurationManager extends ExtbaseConfigurationManager implements Config
 
     /**
      * @param string $extensionName
-     * @return null|[]
+     * @return array
      */
     protected function getTypoScriptSettings(string $extensionName)
     {
diff --git a/typo3/sysext/form/Classes/Mvc/ProcessingRule.php b/typo3/sysext/form/Classes/Mvc/ProcessingRule.php
index 7047fabba85f59ac3c37e601ffd98b2abe22687b..c65eb937d36d531065d41acf82daa7081d76773e 100644
--- a/typo3/sysext/form/Classes/Mvc/ProcessingRule.php
+++ b/typo3/sysext/form/Classes/Mvc/ProcessingRule.php
@@ -125,7 +125,7 @@ class ProcessingRule
     /**
      * Returns the child validators of the ConjunctionValidator that is bound to this processing rule
      *
-     * @return \SplObjectStorage<ValidatorInterface>
+     * @return \SplObjectStorage
      * @internal
      */
     public function getValidators(): \SplObjectStorage
diff --git a/typo3/sysext/frontend/Classes/Authentication/FrontendUserAuthentication.php b/typo3/sysext/frontend/Classes/Authentication/FrontendUserAuthentication.php
index 968dbc0ee07fd1a23671e37f5cc1b609238e7083..9ac6833f1fd394ef684f590d055d8fe07610d897 100644
--- a/typo3/sysext/frontend/Classes/Authentication/FrontendUserAuthentication.php
+++ b/typo3/sysext/frontend/Classes/Authentication/FrontendUserAuthentication.php
@@ -412,7 +412,8 @@ class FrontendUserAuthentication extends AbstractUserAuthentication
      * If the flag $this->userData_change has been set, the function ->writeUC is called (which will save persistent user session data)
      * If the flag $this->sesData_change has been set, the current session record is updated with the content of $this->sessionData
      *
-     * @see getKey(), setKey()
+     * @see getKey()
+     * @see setKey()
      */
     public function storeSessionData()
     {
@@ -561,7 +562,8 @@ class FrontendUserAuthentication extends AbstractUserAuthentication
      * @param string $type Session data type; Either "user" (persistent, bound to fe_users profile) or "ses" (temporary, bound to current session cookie)
      * @param string $key Key from the data array to store incoming data in; The session data (in either case) is an array ($this->uc / $this->sessionData) and this value determines in which key the $data value will be stored.
      * @param mixed $data The data value to store in $key
-     * @see setKey(), storeSessionData()
+     * @see setKey()
+     * @see storeSessionData()
      */
     public function setKey($type, $key, $data)
     {
diff --git a/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php b/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php
index 00c26934672f2855c388b1ce448f5c78d242d75e..461f16c3ad93fc7bd8b7aee324759dffbdab5d43 100644
--- a/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php
+++ b/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php
@@ -1409,7 +1409,8 @@ class ContentObjectRenderer implements LoggerAwareInterface
      * @param string $content Input string
      * @param string $wrap A string where the first two parts separated by "|" (vertical line) will be wrapped around the input string
      * @return string Wrapped output string
-     * @see wrap(), cImage(), FILE()
+     * @see wrap()
+     * @see cImage()
      */
     public function linkWrap($content, $wrap)
     {
@@ -1430,7 +1431,7 @@ class ContentObjectRenderer implements LoggerAwareInterface
      * @param array $conf TypoScript configuration properties
      * @param bool $longDesc If set, the longdesc attribute will be generated - must only be used for img elements!
      * @return string Parameter string containing alt and title parameters (if any)
-     * @see IMGTEXT(), FILE(), FORM(), cImage(), filelink()
+     * @see cImage()
      */
     public function getAltParam($conf, $longDesc = true)
     {
@@ -1467,7 +1468,7 @@ class ContentObjectRenderer implements LoggerAwareInterface
      * @param array $conf TypoScript configuration properties
      * @param bool|int $addGlobal If set, will add the global config.ATagParams to the link
      * @return string String containing the parameters to the A tag (if non empty, with a leading space)
-     * @see IMGTEXT(), filelink(), makelinks(), typolink()
+     * @see typolink()
      */
     public function getATagParams($conf, $addGlobal = 1)
     {
@@ -3009,7 +3010,8 @@ class ContentObjectRenderer implements LoggerAwareInterface
      *
      * @param array $conf TypoScript properties defining what to compare
      * @return bool
-     * @see stdWrap(), _parseFunc()
+     * @see stdWrap()
+     * @see _parseFunc()
      */
     public function checkIf($conf)
     {
@@ -3087,7 +3089,9 @@ class ContentObjectRenderer implements LoggerAwareInterface
      * @param string $theValue The value to parse by the class \TYPO3\CMS\Core\Html\HtmlParser
      * @param array $conf TypoScript properties for the parser. See link.
      * @return string Return value.
-     * @see stdWrap(), \TYPO3\CMS\Core\Html\HtmlParser::HTMLparserConfig(), \TYPO3\CMS\Core\Html\HtmlParser::HTMLcleaner()
+     * @see stdWrap()
+     * @see \TYPO3\CMS\Core\Html\HtmlParser::HTMLparserConfig()
+     * @see \TYPO3\CMS\Core\Html\HtmlParser::HTMLcleaner()
      */
     public function HTMLparser_TSbridge($theValue, $conf)
     {
@@ -3102,7 +3106,8 @@ class ContentObjectRenderer implements LoggerAwareInterface
      * @param string $content Input string being wrapped
      * @param string $wrap The wrap string, eg. "<strong></strong>" or more likely here '<a href="index.php?id={TSFE:id}"> | </a>' which will wrap the input string in a <a> tag linking to the current page.
      * @return string Output string wrapped in the wrapping value.
-     * @see insertData(), stdWrap()
+     * @see insertData()
+     * @see stdWrap()
      */
     public function dataWrap($content, $wrap)
     {
@@ -3120,7 +3125,9 @@ class ContentObjectRenderer implements LoggerAwareInterface
      *
      * @param string $str Input value
      * @return string Processed input value
-     * @see getData(), stdWrap(), dataWrap()
+     * @see getData()
+     * @see stdWrap()
+     * @see dataWrap()
      */
     public function insertData($str)
     {
@@ -3420,7 +3427,8 @@ class ContentObjectRenderer implements LoggerAwareInterface
      * @param array $conf TypoScript properties for "split
      * @return string Compiled result
      * @internal
-     * @see stdWrap(), \TYPO3\CMS\Frontend\ContentObject\Menu\AbstractMenuContentObject::processItemStates()
+     * @see stdWrap()
+     * @see \TYPO3\CMS\Frontend\ContentObject\Menu\AbstractMenuContentObject::processItemStates()
      */
     public function splitObj($value, $conf)
     {
@@ -4242,7 +4250,8 @@ class ContentObjectRenderer implements LoggerAwareInterface
      * @param string|File|FileReference $file A "imgResource" TypoScript data type. Either a TypoScript file resource, a file or a file reference object or the string GIFBUILDER. See description above.
      * @param array $fileArray TypoScript properties for the imgResource type
      * @return array|null Returns info-array
-     * @see IMG_RESOURCE(), cImage(), \TYPO3\CMS\Frontend\Imaging\GifBuilder
+     * @see cImage()
+     * @see \TYPO3\CMS\Frontend\Imaging\GifBuilder
      */
     public function getImgResource($file, $fileArray)
     {
@@ -4984,7 +4993,8 @@ class ContentObjectRenderer implements LoggerAwareInterface
      * @param string $linkText The string (text) to link
      * @param array $conf TypoScript configuration (see link below)
      * @return string A link-wrapped string.
-     * @see stdWrap(), \TYPO3\CMS\Frontend\Plugin\AbstractPlugin::pi_linkTP()
+     * @see stdWrap()
+     * @see \TYPO3\CMS\Frontend\Plugin\AbstractPlugin::pi_linkTP()
      */
     public function typoLink($linkText, $conf)
     {
@@ -5585,7 +5595,9 @@ class ContentObjectRenderer implements LoggerAwareInterface
      * @param array $conf The TypoScript configuration to pass the function
      * @param string $content The content string to pass the function
      * @return string The return content from the function call. Should probably be a string.
-     * @see USER(), stdWrap(), typoLink(), _parseFunc()
+     * @see stdWrap()
+     * @see typoLink()
+     * @see _parseFunc()
      */
     public function callUserFunction($funcName, $conf, $content)
     {
@@ -5858,7 +5870,8 @@ class ContentObjectRenderer implements LoggerAwareInterface
      * @param array $prevId_array array of IDs from previous recursions. In order to prevent infinite loops with mount pages.
      * @param int $recursionLevel Internal: Zero for the first recursion, incremented for each recursive call.
      * @return string Returns the list of ids as a comma separated string
-     * @see TypoScriptFrontendController::checkEnableFields(), TypoScriptFrontendController::checkPagerecordForIncludeSection()
+     * @see TypoScriptFrontendController::checkEnableFields()
+     * @see TypoScriptFrontendController::checkPagerecordForIncludeSection()
      */
     public function getTreeList($id, $depth, $begin = 0, $dontCheckEnableFields = false, $addSelectFields = '', $moreWhereClauses = '', array $prevId_array = [], $recursionLevel = 0)
     {
@@ -6188,7 +6201,7 @@ class ContentObjectRenderer implements LoggerAwareInterface
      * @throws \RuntimeException
      * @throws \InvalidArgumentException
      * @internal
-     * @see CONTENT(), numRows()
+     * @see numRows()
      */
     public function getQuery($table, $conf, $returnQueryArray = false)
     {
diff --git a/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php b/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php
index 4ef37e5cd5da53fb072c74d7e702235b60c1e2cd..457d0e1f979579248f4ba869fe931d6a7f3c9afa 100644
--- a/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php
+++ b/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php
@@ -1538,7 +1538,8 @@ class TypoScriptFrontendController implements LoggerAwareInterface
      * @param array $row The page record to evaluate (needs fields: hidden, starttime, endtime, fe_group)
      * @param bool $bypassGroupCheck Bypass group-check
      * @return bool TRUE, if record is viewable.
-     * @see \TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::getTreeList(), checkPagerecordForIncludeSection()
+     * @see \TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::getTreeList()
+     * @see checkPagerecordForIncludeSection()
      */
     public function checkEnableFields($row, $bypassGroupCheck = false)
     {
@@ -1908,7 +1909,8 @@ class TypoScriptFrontendController implements LoggerAwareInterface
      * Used to get and later store the cached data.
      *
      * @return string MD5 hash of serialized hash base from createHashBase()
-     * @see getFromCache(), getLockHash()
+     * @see getFromCache()
+     * @see getLockHash()
      */
     protected function getHash()
     {
@@ -1920,7 +1922,8 @@ class TypoScriptFrontendController implements LoggerAwareInterface
      * This hash is unique to the above hash, except that it doesn't contain the template information in $this->all.
      *
      * @return string MD5 hash
-     * @see getFromCache(), getHash()
+     * @see getFromCache()
+     * @see getHash()
      */
     protected function getLockHash()
     {
@@ -3219,7 +3222,8 @@ class TypoScriptFrontendController implements LoggerAwareInterface
      * Converts relative paths in the HTML source to absolute paths for fileadmin/, typo3conf/ext/ and media/ folders.
      *
      * @internal
-     * @see RequestHandler, INTincScript()
+     * @see \TYPO3\CMS\Frontend\Http\RequestHandler
+     * @see INTincScript()
      */
     public function setAbsRefPrefix()
     {
diff --git a/typo3/sysext/frontend/Classes/Imaging/GifBuilder.php b/typo3/sysext/frontend/Classes/Imaging/GifBuilder.php
index d1e0813f5fcb0f5071cb0d1aba7935014887ac58..6c34a7a0114f29995cb71d7dc3fa8ea0d4741f24 100644
--- a/typo3/sysext/frontend/Classes/Imaging/GifBuilder.php
+++ b/typo3/sysext/frontend/Classes/Imaging/GifBuilder.php
@@ -343,7 +343,8 @@ class GifBuilder extends GraphicalFunctions
      * Otherwise rendering means calling ->make(), then ->output(), then ->destroy()
      *
      * @return string The filename for the created GIF/PNG file. The filename will be prefixed "GB_
-     * @see make(), fileName()
+     * @see make()
+     * @see fileName()
      */
     public function gifBuild()
     {
diff --git a/typo3/sysext/frontend/Classes/Plugin/AbstractPlugin.php b/typo3/sysext/frontend/Classes/Plugin/AbstractPlugin.php
index 5b7bae1c4665ce5439783611724c2a0c8f7c0895..4ecfc844adf157f2b1282f4479cbe68b18872327 100644
--- a/typo3/sysext/frontend/Classes/Plugin/AbstractPlugin.php
+++ b/typo3/sysext/frontend/Classes/Plugin/AbstractPlugin.php
@@ -340,7 +340,7 @@ class AbstractPlugin
      * @param array|string $urlParameters As an array key/value pairs represent URL parameters to set. Values NOT URL-encoded yet, keys should be URL-encoded if needed. As a string the parameter is expected to be URL-encoded already.
      * @return string The resulting URL
      * @see pi_linkToPage()
-     * @see ContentObjectRenderer->getTypoLink()
+     * @see ContentObjectRenderer::getTypoLink()
      */
     public function pi_getPageLink($id, $target = '', $urlParameters = [])
     {
@@ -357,7 +357,8 @@ class AbstractPlugin
      * @param string $target Target value to use. Affects the &type-value of the URL, defaults to current.
      * @param array|string $urlParameters As an array key/value pairs represent URL parameters to set. Values NOT URL-encoded yet, keys should be URL-encoded if needed. As a string the parameter is expected to be URL-encoded already.
      * @return string The input string wrapped in <a> tags with the URL and target set.
-     * @see pi_getPageLink(), ContentObjectRenderer::getTypoLink()
+     * @see pi_getPageLink()
+     * @see ContentObjectRenderer::getTypoLink()
      */
     public function pi_linkToPage($str, $id, $target = '', $urlParameters = [])
     {
@@ -373,7 +374,8 @@ class AbstractPlugin
      * @param bool $cache If $cache is set (0/1), the page is asked to be cached by a &cHash value (unless the current plugin using this class is a USER_INT). Otherwise the no_cache-parameter will be a part of the link.
      * @param int $altPageId Alternative page ID for the link. (By default this function links to the SAME page!)
      * @return string The input string wrapped in <a> tags
-     * @see pi_linkTP_keepPIvars(), ContentObjectRenderer::typoLink()
+     * @see pi_linkTP_keepPIvars()
+     * @see ContentObjectRenderer::typoLink()
      */
     public function pi_linkTP($str, $urlParameters = [], $cache = false, $altPageId = 0)
     {
@@ -439,7 +441,8 @@ class AbstractPlugin
      * @param bool $urlOnly If TRUE, only the URL is returned, not a full link
      * @param int $altPageId Alternative page ID for the link. (By default this function links to the SAME page!)
      * @return string The input string wrapped in <a> tags
-     * @see pi_linkTP(), pi_linkTP_keepPIvars()
+     * @see pi_linkTP()
+     * @see pi_linkTP_keepPIvars()
      */
     public function pi_list_linkSingle($str, $uid, $cache = false, $mergeArr = [], $urlOnly = false, $altPageId = 0)
     {
@@ -717,7 +720,8 @@ class AbstractPlugin
      * @param Statement $statement Result pointer to a SQL result which can be traversed.
      * @param string $tableParams Attributes for the table tag which is wrapped around the table rows containing the list
      * @return string Output HTML, wrapped in <div>-tags with a class attribute
-     * @see pi_list_row(), pi_list_header()
+     * @see pi_list_row()
+     * @see pi_list_header()
      */
     public function pi_list_makelist($statement, $tableParams = '')
     {
diff --git a/typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php b/typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
index 2303d727df907ca84cf430297dffe2b992b660f4..e768a885d653c6737f8dd52da35dd8c758096f30 100644
--- a/typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
+++ b/typo3/sysext/frontend/Tests/Unit/ContentObject/ContentObjectRendererTest.php
@@ -8265,7 +8265,7 @@ class ContentObjectRendererTest extends UnitTestCase
      * (The default value of currentValKey is tested elsewhere.)
      *
      * @test
-     * @see $this->stdWrap_current()
+     * @see stdWrap_current()
      */
     public function setCurrentVal_getCurrentVal(): void
     {
diff --git a/typo3/sysext/frontend/Tests/Unit/Service/TypoLinkCodecServiceTest.php b/typo3/sysext/frontend/Tests/Unit/Service/TypoLinkCodecServiceTest.php
index c84db80852c708099d4ec6b0ca37e729463f61f3..e9db26df86e18fe3c0a8c1736b7767d5b2e88be0 100644
--- a/typo3/sysext/frontend/Tests/Unit/Service/TypoLinkCodecServiceTest.php
+++ b/typo3/sysext/frontend/Tests/Unit/Service/TypoLinkCodecServiceTest.php
@@ -40,7 +40,7 @@ class TypoLinkCodecServiceTest extends UnitTestCase
      * @test
      * @dataProvider encodeReturnsExpectedResultDataProvider
      * @param array $parts
-     * @param string$expected
+     * @param string $expected
      */
     public function encodeReturnsExpectedResult(array $parts, $expected)
     {
diff --git a/typo3/sysext/impexp/Classes/Import.php b/typo3/sysext/impexp/Classes/Import.php
index 4e3dabf6035e055b543d6f8b757ab574f86e6d44..a98dfce6d7d88417b73faa5a9078f7cd86e31b82 100644
--- a/typo3/sysext/impexp/Classes/Import.php
+++ b/typo3/sysext/impexp/Classes/Import.php
@@ -622,7 +622,8 @@ class Import extends ImportExport
      * Only used for updates and when $this->dat['header']['pagetree'] is an array.
      *
      * @internal
-     * @see writeRecords_pages(), writeRecords_records_order()
+     * @see writeRecords_pages()
+     * @see writeRecords_records_order()
      */
     public function writeRecords_pages_order()
     {
@@ -745,7 +746,8 @@ class Import extends ImportExport
      *
      * @param int $mainPid Main PID into which we import.
      * @internal
-     * @see writeRecords_records(), writeRecords_pages_order()
+     * @see writeRecords_records()
+     * @see writeRecords_pages_order()
      */
     public function writeRecords_records_order($mainPid)
     {
diff --git a/typo3/sysext/install/Classes/Configuration/AbstractFeature.php b/typo3/sysext/install/Classes/Configuration/AbstractFeature.php
index 8802a0a7c2d2435457d93425bef676a5285af2d4..db28958e3345e77dbe0cef211624fe7730d02692 100644
--- a/typo3/sysext/install/Classes/Configuration/AbstractFeature.php
+++ b/typo3/sysext/install/Classes/Configuration/AbstractFeature.php
@@ -99,7 +99,7 @@ abstract class AbstractFeature
     /**
      * Return presets ordered by priority
      *
-     * @return array<PresetInterface>
+     * @return array|PresetInterface[]
      * @throws Exception
      */
     public function getPresetsOrderedByPriority()
diff --git a/typo3/sysext/install/Classes/ExtensionScanner/Php/MatcherFactory.php b/typo3/sysext/install/Classes/ExtensionScanner/Php/MatcherFactory.php
index 8224577f625260816fc2ab388dc2aff204f658f4..c9314f6eff1ae4f913a1e0db146f8da0a3b0b59c 100644
--- a/typo3/sysext/install/Classes/ExtensionScanner/Php/MatcherFactory.php
+++ b/typo3/sysext/install/Classes/ExtensionScanner/Php/MatcherFactory.php
@@ -29,7 +29,7 @@ class MatcherFactory
      * Create matcher instances and hand over configuration.
      *
      * @param array $matcherConfigurations Incoming configuration array
-     * @return NodeVisitor[]&CodeScannerInterface[]
+     * @return NodeVisitor[]|CodeScannerInterface[]
      * @throws \RuntimeException
      */
     public function createAll(array $matcherConfigurations)
diff --git a/typo3/sysext/install/Classes/FolderStructure/AbstractNode.php b/typo3/sysext/install/Classes/FolderStructure/AbstractNode.php
index 949420d0dfdb77115ba4f5b7ba452647563a5572..51ada1fb3fca665efb9b0e8dcb419773532d9371 100644
--- a/typo3/sysext/install/Classes/FolderStructure/AbstractNode.php
+++ b/typo3/sysext/install/Classes/FolderStructure/AbstractNode.php
@@ -181,7 +181,7 @@ abstract class AbstractNode
     /**
      * Get current permission of node
      *
-     * @return string, eg. 2775 for dirs, 0664 for files
+     * @return string eg. 2775 for dirs, 0664 for files
      */
     protected function getCurrentPermission()
     {
diff --git a/typo3/sysext/linkvalidator/Classes/Task/ValidatorTaskAdditionalFieldProvider.php b/typo3/sysext/linkvalidator/Classes/Task/ValidatorTaskAdditionalFieldProvider.php
index aae21332b799ea7c44a8f1947a79a9bac72e44ce..d0d0c13ef15001305fc4f4e39e1b8826ab8941e7 100644
--- a/typo3/sysext/linkvalidator/Classes/Task/ValidatorTaskAdditionalFieldProvider.php
+++ b/typo3/sysext/linkvalidator/Classes/Task/ValidatorTaskAdditionalFieldProvider.php
@@ -43,7 +43,7 @@ class ValidatorTaskAdditionalFieldProvider extends AbstractAdditionalFieldProvid
      * @param ValidatorTask|null $task The task object being edited. Null when adding a task!
      * @param SchedulerModuleController $schedulerModule Reference to the BE module of the Scheduler
      * @return array Additional fields
-     * @see AdditionalFieldProviderInterface->getAdditionalFields($taskInfo, $task, $schedulerModule)
+     * @see AdditionalFieldProviderInterface::getAdditionalFields
      */
     public function getAdditionalFields(array &$taskInfo, $task, SchedulerModuleController $schedulerModule)
     {
diff --git a/typo3/sysext/lowlevel/Classes/Controller/DatabaseIntegrityController.php b/typo3/sysext/lowlevel/Classes/Controller/DatabaseIntegrityController.php
index 51b26bf7b900529425db007a505d602e9f28352f..ebd561953b76c7fe15332b5dc25ee82708ec59c0 100644
--- a/typo3/sysext/lowlevel/Classes/Controller/DatabaseIntegrityController.php
+++ b/typo3/sysext/lowlevel/Classes/Controller/DatabaseIntegrityController.php
@@ -95,7 +95,6 @@ class DatabaseIntegrityController
     /**
      * Current settings for the keys of the MOD_MENU array
      *
-     * @see $MOD_MENU
      * @var array
      */
     protected $MOD_SETTINGS = [];
diff --git a/typo3/sysext/lowlevel/Classes/Integrity/DatabaseIntegrityCheck.php b/typo3/sysext/lowlevel/Classes/Integrity/DatabaseIntegrityCheck.php
index 50c200500b3d45859ceea37d4a137a29c99ee0db..5065fa35d5f06158620e1641b1d3960c43ce0b90 100644
--- a/typo3/sysext/lowlevel/Classes/Integrity/DatabaseIntegrityCheck.php
+++ b/typo3/sysext/lowlevel/Classes/Integrity/DatabaseIntegrityCheck.php
@@ -33,7 +33,8 @@ use TYPO3\CMS\Core\Utility\GeneralUtility;
  * @TODO: updated and the whole API is better defined. There are some known bugs
  * @TODO: in this library. Further it would be nice with a facility to not only
  * @TODO: analyze but also clean up!
- * @see \TYPO3\CMS\Lowlevel\Controller\DatabaseIntegrityController::func_relations(), \TYPO3\CMS\Lowlevel\Controller\DatabaseIntegrityController::func_records()
+ * @see \TYPO3\CMS\Lowlevel\Controller\DatabaseIntegrityController::func_relations()
+ * @see \TYPO3\CMS\Lowlevel\Controller\DatabaseIntegrityController::func_records()
  */
 class DatabaseIntegrityCheck
 {
diff --git a/typo3/sysext/scheduler/Classes/Controller/SchedulerModuleController.php b/typo3/sysext/scheduler/Classes/Controller/SchedulerModuleController.php
index ecf00dcca4f5ccb2076cc8d1523ea40ab74da54f..be210eed98dfe78f4f52561a723decf4f8e5a38f 100644
--- a/typo3/sysext/scheduler/Classes/Controller/SchedulerModuleController.php
+++ b/typo3/sysext/scheduler/Classes/Controller/SchedulerModuleController.php
@@ -119,7 +119,6 @@ class SchedulerModuleController
     /**
      * Current settings for the keys of the MOD_MENU array
      *
-     * @see $MOD_MENU
      * @var array
      */
     protected $MOD_SETTINGS = [];
diff --git a/typo3/sysext/scheduler/Classes/Task/ExecuteSchedulableCommandAdditionalFieldProvider.php b/typo3/sysext/scheduler/Classes/Task/ExecuteSchedulableCommandAdditionalFieldProvider.php
index 7c5b99f4bc6e7f185024ed58cec55f31757480eb..60d668419215cf2b270f314805dd0743e67e3d5c 100644
--- a/typo3/sysext/scheduler/Classes/Task/ExecuteSchedulableCommandAdditionalFieldProvider.php
+++ b/typo3/sysext/scheduler/Classes/Task/ExecuteSchedulableCommandAdditionalFieldProvider.php
@@ -70,7 +70,7 @@ class ExecuteSchedulableCommandAdditionalFieldProvider implements AdditionalFiel
      * @param AbstractTask|null $task When editing, reference to the current task. NULL when adding.
      * @param SchedulerModuleController $schedulerModule Reference to the calling object (BE module of the Scheduler)
      * @return array Additional fields
-     * @see \TYPO3\CMS\Scheduler\AdditionalFieldProvider#getAdditionalFields($taskInfo, $task, $schedulerModule)
+     * @see \TYPO3\CMS\Scheduler\AdditionalFieldProviderInterface::getAdditionalFields
      */
     public function getAdditionalFields(array &$taskInfo, $task, SchedulerModuleController $schedulerModule): array
     {
diff --git a/typo3/sysext/tstemplate/Classes/Controller/TypoScriptTemplateModuleController.php b/typo3/sysext/tstemplate/Classes/Controller/TypoScriptTemplateModuleController.php
index 6be8a18b6c49c96ac4d09fb346256e274303fdca..71d2e180706d3a7b75210008b3e031e41d6ea226 100644
--- a/typo3/sysext/tstemplate/Classes/Controller/TypoScriptTemplateModuleController.php
+++ b/typo3/sysext/tstemplate/Classes/Controller/TypoScriptTemplateModuleController.php
@@ -108,7 +108,6 @@ class TypoScriptTemplateModuleController
     /**
      * Current settings for the keys of the MOD_MENU array, used in client classes
      *
-     * @see $MOD_MENU
      * @var array
      */
     public $MOD_SETTINGS = [];
@@ -123,7 +122,6 @@ class TypoScriptTemplateModuleController
     /**
      * Contains module configuration parts from TBE_MODULES_EXT if found
      *
-     * @see handleExternalFunctionValue()
      * @var array
      */
     protected $extClassConf;
@@ -654,7 +652,9 @@ page.10.value = HELLO WORLD!
      * Also loads the modTSconfig internal variable.
      *
      * @param array|string|null $changedSettings can be anything
-     * @see mainAction(), $MOD_MENU, $MOD_SETTINGS, \TYPO3\CMS\Backend\Utility\BackendUtility::getModuleData(), mergeExternalItems()
+     * @see mainAction()
+     * @see \TYPO3\CMS\Backend\Utility\BackendUtility::getModuleData()
+     * @see mergeExternalItems()
      */
     protected function menuConfig($changedSettings)
     {
@@ -678,7 +678,8 @@ page.10.value = HELLO WORLD!
      * @param array $menuArr The part of a MOD_MENU array to work on.
      * @return array Modified array part.
      * @internal
-     * @see \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::insertModuleFunction(), menuConfig()
+     * @see \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::insertModuleFunction()
+     * @see menuConfig()
      */
     protected function mergeExternalItems($modName, $menuKey, $menuArr)
     {
@@ -715,10 +716,10 @@ page.10.value = HELLO WORLD!
     /**
      * Creates an instance of the class found in $this->extClassConf['name'] in $this->extObj if any (this should hold three keys, "name", "path" and "title" if a "Function menu module" tries to connect...)
      * This value in extClassConf might be set by an extension (in an ext_tables/ext_localconf file) which thus "connects" to a module.
-     * The array $this->extClassConf is set in handleExternalFunctionValue() based on the value of MOD_SETTINGS[function]
+     * The array $this->extClassConf is set based on the value of MOD_SETTINGS[function]
      * If an instance is created it is initiated with $this passed as value and $this->extClassConf as second argument. Further the $this->MOD_SETTING is cleaned up again after calling the init function.
      *
-     * @see handleExternalFunctionValue(), \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::insertModuleFunction(), $extObj
+     * @see \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::insertModuleFunction()
      * @param array|string|null $changedSettings
      * @param ServerRequestInterface $request
      */
diff --git a/typo3/sysext/workspaces/Classes/Service/GridDataService.php b/typo3/sysext/workspaces/Classes/Service/GridDataService.php
index b843fdded45b5db969fa37e66ce32421a0a0bc54..e45535ef6674c3900532e300612c7f87686bf7e2 100644
--- a/typo3/sysext/workspaces/Classes/Service/GridDataService.php
+++ b/typo3/sysext/workspaces/Classes/Service/GridDataService.php
@@ -632,7 +632,7 @@ class GridDataService implements LoggerAwareInterface
      * Emits a signal to be handled by any registered slots.
      *
      * @param string $signalName Name of the signal
-     * @param array<int, mixed> $arguments
+     * @param array|mixed[] $arguments
      * @return array
      */
     protected function emitSignal($signalName, ...$arguments)
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Modify/ActionTest.php b/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Modify/ActionTest.php
index 3316b8f6e202ccf94d6dba17c3f096df253e8c6d..5a4948e1640e3c5346b2a3d859dd15413e84242b 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Modify/ActionTest.php
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Modify/ActionTest.php
@@ -30,7 +30,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSet/modifyContentRecord.csv
+     * See DataSet/modifyContentRecord.csv
      */
     public function modifyContent()
     {
@@ -47,7 +47,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSet/deleteContentRecord.csv
+     * See DataSet/deleteContentRecord.csv
      */
     public function deleteContent()
     {
@@ -63,7 +63,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSet/copyContentRecord.csv
+     * See DataSet/copyContentRecord.csv
      */
     public function copyContent()
     {
@@ -80,7 +80,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSet/localizeContentRecord.csv
+     * See DataSet/localizeContentRecord.csv
      */
     public function localizeContent()
     {
@@ -100,7 +100,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSet/changeContentRecordSorting.csv
+     * See DataSet/changeContentRecordSorting.csv
      */
     public function changeContentSorting()
     {
@@ -120,7 +120,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSet/moveContentRecordToDifferentPage.csv
+     * See DataSet/moveContentRecordToDifferentPage.csv
      */
     public function moveContentToDifferentPage()
     {
@@ -144,7 +144,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSet/moveContentRecordToDifferentPageAndChangeSorting.csv
+     * See DataSet/moveContentRecordToDifferentPageAndChangeSorting.csv
      */
     public function moveContentToDifferentPageAndChangeSorting()
     {
@@ -168,7 +168,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSets/createContentWFileReference.csv
+     * See DataSets/createContentWFileReference.csv
      */
     public function createContentWithFileReference()
     {
@@ -185,7 +185,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSets/modifyContentWFileReference.csv
+     * See DataSets/modifyContentWFileReference.csv
      */
     public function modifyContentWithFileReference()
     {
@@ -202,7 +202,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSets/modifyContentNAddFileReference.csv
+     * See DataSets/modifyContentNAddFileReference.csv
      */
     public function modifyContentAndAddFileReference()
     {
@@ -217,7 +217,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSets/modifyContentNDeleteFileReference.csv
+     * See DataSets/modifyContentNDeleteFileReference.csv
      */
     public function modifyContentAndDeleteFileReference()
     {
@@ -235,7 +235,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSets/modifyContentNDeleteAllFileReference.csv
+     * See DataSets/modifyContentNDeleteAllFileReference.csv
      */
     public function modifyContentAndDeleteAllFileReference()
     {
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Publish/ActionTest.php b/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Publish/ActionTest.php
index d71b701b087ce577ec951afdc95e14250473fabc..d04401d771762431c8739e6db4aac27d07bbbafb 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Publish/ActionTest.php
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/Publish/ActionTest.php
@@ -30,7 +30,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSet/modifyContentRecord.csv
+     * See DataSet/modifyContentRecord.csv
      */
     public function modifyContent()
     {
@@ -48,7 +48,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSet/deleteContentRecord.csv
+     * See DataSet/deleteContentRecord.csv
      */
     public function deleteContent()
     {
@@ -65,7 +65,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSet/copyContentRecord.csv
+     * See DataSet/copyContentRecord.csv
      */
     public function copyContent()
     {
@@ -83,7 +83,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSet/localizeContentRecord.csv
+     * See DataSet/localizeContentRecord.csv
      */
     public function localizeContent()
     {
@@ -105,7 +105,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSet/changeContentRecordSorting.csv
+     * See DataSet/changeContentRecordSorting.csv
      */
     public function changeContentSorting()
     {
@@ -126,7 +126,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSet/moveContentRecordToDifferentPage.csv
+     * See DataSet/moveContentRecordToDifferentPage.csv
      */
     public function moveContentToDifferentPage()
     {
@@ -150,7 +150,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSet/moveContentRecordToDifferentPageAndChangeSorting.csv
+     * See DataSet/moveContentRecordToDifferentPageAndChangeSorting.csv
      */
     public function moveContentToDifferentPageAndChangeSorting()
     {
@@ -179,7 +179,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSets/createContentWFileReference.csv
+     * See DataSets/createContentWFileReference.csv
      */
     public function createContentWithFileReference()
     {
@@ -197,7 +197,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSets/modifyContentWFileReference.csv
+     * See DataSets/modifyContentWFileReference.csv
      */
     public function modifyContentWithFileReference()
     {
@@ -215,7 +215,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSets/modifyContentNAddFileReference.csv
+     * See DataSets/modifyContentNAddFileReference.csv
      */
     public function modifyContentAndAddFileReference()
     {
@@ -231,7 +231,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSets/modifyContentNDeleteFileReference.csv
+     * See DataSets/modifyContentNDeleteFileReference.csv
      */
     public function modifyContentAndDeleteFileReference()
     {
@@ -250,7 +250,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSets/modifyContentNDeleteAllFileReference.csv
+     * See DataSets/modifyContentNDeleteAllFileReference.csv
      */
     public function modifyContentAndDeleteAllFileReference()
     {
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/PublishAll/ActionTest.php b/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/PublishAll/ActionTest.php
index 2abcb787122519db634d92d77bb662695eb774d8..7896540ba58e475e06ef937291767f869b6f9254 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/PublishAll/ActionTest.php
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/FAL/PublishAll/ActionTest.php
@@ -30,7 +30,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSet/modifyContentRecord.csv
+     * See DataSet/modifyContentRecord.csv
      */
     public function modifyContent()
     {
@@ -48,7 +48,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSet/deleteContentRecord.csv
+     * See DataSet/deleteContentRecord.csv
      */
     public function deleteContent()
     {
@@ -65,7 +65,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSet/copyContentRecord.csv
+     * See DataSet/copyContentRecord.csv
      */
     public function copyContent()
     {
@@ -83,7 +83,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSet/localizeContentRecord.csv
+     * See DataSet/localizeContentRecord.csv
      */
     public function localizeContent()
     {
@@ -104,7 +104,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSet/changeContentRecordSorting.csv
+     * See DataSet/changeContentRecordSorting.csv
      */
     public function changeContentSorting()
     {
@@ -125,7 +125,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSet/moveContentRecordToDifferentPage.csv
+     * See DataSet/moveContentRecordToDifferentPage.csv
      */
     public function moveContentToDifferentPage()
     {
@@ -149,7 +149,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSet/moveContentRecordToDifferentPageAndChangeSorting.csv
+     * See DataSet/moveContentRecordToDifferentPageAndChangeSorting.csv
      */
     public function moveContentToDifferentPageAndChangeSorting()
     {
@@ -174,7 +174,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSets/createContentWFileReference.csv
+     * See DataSets/createContentWFileReference.csv
      */
     public function createContentWithFileReference()
     {
@@ -192,7 +192,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSets/modifyContentWFileReference.csv
+     * See DataSets/modifyContentWFileReference.csv
      */
     public function modifyContentWithFileReference()
     {
@@ -210,7 +210,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSets/modifyContentNAddFileReference.csv
+     * See DataSets/modifyContentNAddFileReference.csv
      */
     public function modifyContentAndAddFileReference()
     {
@@ -226,7 +226,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSets/modifyContentNDeleteFileReference.csv
+     * See DataSets/modifyContentNDeleteFileReference.csv
      */
     public function modifyContentAndDeleteFileReference()
     {
@@ -245,7 +245,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\FAL
 
     /**
      * @test
-     * @see DataSets/modifyContentNDeleteAllFileReference.csv
+     * See DataSets/modifyContentNDeleteAllFileReference.csv
      */
     public function modifyContentAndDeleteAllFileReference()
     {
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Group/Modify/ActionTest.php b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Group/Modify/ActionTest.php
index 347f53a45debf6e46738a616bb1e16c08e9c8e6d..cbf750c6ee1e058f6909a78e2dc55f612edee12f 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Group/Modify/ActionTest.php
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Group/Modify/ActionTest.php
@@ -30,7 +30,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/addElementRelation.csv
+     * See DataSet/addElementRelation.csv
      */
     public function addElementRelation()
     {
@@ -45,7 +45,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/deleteElementRelation.csv
+     * See DataSet/deleteElementRelation.csv
      */
     public function deleteElementRelation()
     {
@@ -63,7 +63,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/changeElementSorting.csv
+     * See DataSet/changeElementSorting.csv
      */
     public function changeElementSorting()
     {
@@ -78,7 +78,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/changeElementRelationSorting.csv
+     * See DataSet/changeElementRelationSorting.csv
      */
     public function changeElementRelationSorting()
     {
@@ -93,7 +93,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/createContentNAddRelation.csv
+     * See DataSet/createContentNAddRelation.csv
      */
     public function createContentAndAddElementRelation()
     {
@@ -110,7 +110,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/createContentNCreateRelation.csv
+     * See DataSet/createContentNCreateRelation.csv
      */
     public function createContentAndCreateElementRelation()
     {
@@ -127,7 +127,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/modifyElementOfRelation.csv
+     * See DataSet/modifyElementOfRelation.csv
      */
     public function modifyElementOfRelation()
     {
@@ -142,7 +142,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/modifyContentOfRelation.csv
+     * See DataSet/modifyContentOfRelation.csv
      */
     public function modifyContentOfRelation()
     {
@@ -156,7 +156,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/modifyBothSidesOfRelation.csv
+     * See DataSet/modifyBothSidesOfRelation.csv
      */
     public function modifyBothSidesOfRelation()
     {
@@ -173,7 +173,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/deleteContentOfRelation.csv
+     * See DataSet/deleteContentOfRelation.csv
      */
     public function deleteContentOfRelation()
     {
@@ -187,7 +187,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/deleteElementOfRelation.csv
+     * See DataSet/deleteElementOfRelation.csv
      */
     public function deleteElementOfRelation()
     {
@@ -202,7 +202,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/copyContentOfRelation.csv
+     * See DataSet/copyContentOfRelation.csv
      */
     public function copyContentOfRelation()
     {
@@ -218,7 +218,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/copyElementOfRelation.csv
+     * See DataSet/copyElementOfRelation.csv
      */
     public function copyElementOfRelation()
     {
@@ -237,7 +237,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/localizeContentOfRelation.csv
+     * See DataSet/localizeContentOfRelation.csv
      */
     public function localizeContentOfRelation()
     {
@@ -252,7 +252,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/localizeElementOfRelation.csv
+     * See DataSet/localizeElementOfRelation.csv
      */
     public function localizeElementOfRelation()
     {
@@ -269,7 +269,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/moveContentOfRelationToDifferentPage.csv
+     * See DataSet/moveContentOfRelationToDifferentPage.csv
      */
     public function moveContentOfRelationToDifferentPage()
     {
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Group/Publish/ActionTest.php b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Group/Publish/ActionTest.php
index 9c4e5268f888c2381df460c9f231d6664e75bbc2..0efc05c830aa21a9f5284dea4c80c6d4c7fa3cef 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Group/Publish/ActionTest.php
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Group/Publish/ActionTest.php
@@ -30,7 +30,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/addElementRelation.csv
+     * See DataSet/addElementRelation.csv
      */
     public function addElementRelation()
     {
@@ -46,7 +46,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/deleteElementRelation.csv
+     * See DataSet/deleteElementRelation.csv
      */
     public function deleteElementRelation()
     {
@@ -65,7 +65,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/changeElementSorting.csv
+     * See DataSet/changeElementSorting.csv
      */
     public function changeElementSorting()
     {
@@ -81,7 +81,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/changeElementRelationSorting.csv
+     * See DataSet/changeElementRelationSorting.csv
      */
     public function changeElementRelationSorting()
     {
@@ -97,7 +97,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/createContentNAddRelation.csv
+     * See DataSet/createContentNAddRelation.csv
      */
     public function createContentAndAddElementRelation()
     {
@@ -115,7 +115,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/createContentNCreateRelation.csv
+     * See DataSet/createContentNCreateRelation.csv
      */
     public function createContentAndCreateElementRelation()
     {
@@ -138,7 +138,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/modifyElementOfRelation.csv
+     * See DataSet/modifyElementOfRelation.csv
      */
     public function modifyElementOfRelation()
     {
@@ -154,7 +154,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/modifyContentOfRelation.csv
+     * See DataSet/modifyContentOfRelation.csv
      */
     public function modifyContentOfRelation()
     {
@@ -169,7 +169,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/modifyBothSidesOfRelation.csv
+     * See DataSet/modifyBothSidesOfRelation.csv
      */
     public function modifyBothSidesOfRelation()
     {
@@ -192,7 +192,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/deleteContentOfRelation.csv
+     * See DataSet/deleteContentOfRelation.csv
      */
     public function deleteContentOfRelation()
     {
@@ -207,7 +207,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/deleteElementOfRelation.csv
+     * See DataSet/deleteElementOfRelation.csv
      */
     public function deleteElementOfRelation()
     {
@@ -223,7 +223,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/copyContentOfRelation.csv
+     * See DataSet/copyContentOfRelation.csv
      */
     public function copyContentOfRelation()
     {
@@ -240,7 +240,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/copyElementOfRelation.csv
+     * See DataSet/copyElementOfRelation.csv
      */
     public function copyElementOfRelation()
     {
@@ -260,7 +260,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/localizeContentOfRelation.csv
+     * See DataSet/localizeContentOfRelation.csv
      */
     public function localizeContentOfRelation()
     {
@@ -276,7 +276,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/localizeElementOfRelation.csv
+     * See DataSet/localizeElementOfRelation.csv
      */
     public function localizeElementOfRelation()
     {
@@ -295,7 +295,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/moveContentOfRelationToDifferentPage.csv
+     * See DataSet/moveContentOfRelationToDifferentPage.csv
      */
     public function moveContentOfRelationToDifferentPage()
     {
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Group/PublishAll/ActionTest.php b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Group/PublishAll/ActionTest.php
index f5382ee84e088fd2411912e9a975205d654e18ad..b0f3ac1bc31f8133bd0856149c4f62bb8c6ccf37 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Group/PublishAll/ActionTest.php
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Group/PublishAll/ActionTest.php
@@ -30,7 +30,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/addElementRelation.csv
+     * See DataSet/addElementRelation.csv
      */
     public function addElementRelation()
     {
@@ -46,7 +46,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/deleteElementRelation.csv
+     * See DataSet/deleteElementRelation.csv
      */
     public function deleteElementRelation()
     {
@@ -65,7 +65,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/changeElementSorting.csv
+     * See DataSet/changeElementSorting.csv
      */
     public function changeElementSorting()
     {
@@ -81,7 +81,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/changeElementRelationSorting.csv
+     * See DataSet/changeElementRelationSorting.csv
      */
     public function changeElementRelationSorting()
     {
@@ -97,7 +97,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/createContentNAddRelation.csv
+     * See DataSet/createContentNAddRelation.csv
      */
     public function createContentAndAddElementRelation()
     {
@@ -115,7 +115,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/createContentNCreateRelation.csv
+     * See DataSet/createContentNCreateRelation.csv
      */
     public function createContentAndCreateElementRelation()
     {
@@ -133,7 +133,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/modifyElementOfRelation.csv
+     * See DataSet/modifyElementOfRelation.csv
      */
     public function modifyElementOfRelation()
     {
@@ -149,7 +149,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/modifyContentOfRelation.csv
+     * See DataSet/modifyContentOfRelation.csv
      */
     public function modifyContentOfRelation()
     {
@@ -164,7 +164,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/modifyBothSidesOfRelation.csv
+     * See DataSet/modifyBothSidesOfRelation.csv
      */
     public function modifyBothSidesOfRelation()
     {
@@ -182,7 +182,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/deleteContentOfRelation.csv
+     * See DataSet/deleteContentOfRelation.csv
      */
     public function deleteContentOfRelation()
     {
@@ -197,7 +197,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/deleteElementOfRelation.csv
+     * See DataSet/deleteElementOfRelation.csv
      */
     public function deleteElementOfRelation()
     {
@@ -213,7 +213,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/copyContentOfRelation.csv
+     * See DataSet/copyContentOfRelation.csv
      */
     public function copyContentOfRelation()
     {
@@ -230,7 +230,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/copyElementOfRelation.csv
+     * See DataSet/copyElementOfRelation.csv
      */
     public function copyElementOfRelation()
     {
@@ -250,7 +250,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/localizeContentOfRelation.csv
+     * See DataSet/localizeContentOfRelation.csv
      */
     public function localizeContentOfRelation()
     {
@@ -266,7 +266,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/localizeElementOfRelation.csv
+     * See DataSet/localizeElementOfRelation.csv
      */
     public function localizeElementOfRelation()
     {
@@ -284,7 +284,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Gro
 
     /**
      * @test
-     * @see DataSet/moveContentOfRelationToDifferentPage.csv
+     * See DataSet/moveContentOfRelationToDifferentPage.csv
      */
     public function moveContentOfRelationToDifferentPage()
     {
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/CSV/AbstractActionTestCase.php b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/CSV/AbstractActionTestCase.php
index fe615f21a5053bc69e528839f07bd095021b04f3..bbc31b678fcbe1836a84827795cb02ef0ed6c692 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/CSV/AbstractActionTestCase.php
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/CSV/AbstractActionTestCase.php
@@ -46,7 +46,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
      */
 
     /**
-     * @see DataSet/deleteParentContentRecordAndDiscardDeletedParentRecord.csv
+     * See DataSet/deleteParentContentRecordAndDiscardDeletedParentRecord.csv
      */
     public function deleteParentContentAndDiscardDeletedParent()
     {
@@ -60,7 +60,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
      */
 
     /**
-     * @see DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecordsAndDiscardCopiedParentRecord.csv
+     * See DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecordsAndDiscardCopiedParentRecord.csv
      */
     public function createAndCopyParentContentWithHotelAndOfferChildrenAndDiscardCopiedParent()
     {
@@ -81,7 +81,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/createNLocParentNHotelNOfferChildrenNDiscardCreatedParent.csv
+     * See DataSet/createNLocParentNHotelNOfferChildrenNDiscardCreatedParent.csv
      */
     public function createAndLocalizeParentContentWithHotelAndOfferChildrenAndDiscardCreatedParent()
     {
@@ -101,7 +101,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecordsAndDiscardLocalizedParentRecord.csv
+     * See DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecordsAndDiscardLocalizedParentRecord.csv
      */
     public function createAndLocalizeParentContentWithHotelAndOfferChildrenAndDiscardLocalizedParent()
     {
@@ -122,7 +122,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/modifyParentRecordWithHotelChildRecordAndDiscardModifiedParentRecord.csv
+     * See DataSet/modifyParentRecordWithHotelChildRecordAndDiscardModifiedParentRecord.csv
      */
     public function modifyParentWithHotelChildAndDiscardModifiedParent()
     {
@@ -138,7 +138,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/modifyParentRecordWithHotelChildRecordAndDiscardAllModifiedRecords.csv
+     * See DataSet/modifyParentRecordWithHotelChildRecordAndDiscardAllModifiedRecords.csv
      */
     public function modifyParentWithHotelChildAndDiscardAll()
     {
@@ -160,7 +160,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/modifyNDiscardNModifyParentWHotelChild.csv
+     * See DataSet/modifyNDiscardNModifyParentWHotelChild.csv
      */
     public function modifyAndDiscardAndModifyParentWithHotelChild()
     {
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/CSV/Modify/ActionTest.php b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/CSV/Modify/ActionTest.php
index db082a92ce5535140f4a68df0e9988a5e4b31d17..115b9ea6be3915f73428b16021bc3a38499d75e5 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/CSV/Modify/ActionTest.php
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/CSV/Modify/ActionTest.php
@@ -33,7 +33,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createParentContentRecord.csv
+     * See DataSet/createParentContentRecord.csv
      */
     public function createParentContent()
     {
@@ -47,7 +47,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentContentRecord.csv
+     * See DataSet/modifyParentContentRecord.csv
      */
     public function modifyParentContent()
     {
@@ -64,7 +64,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/deleteParentContentRecord.csv
+     * See DataSet/deleteParentContentRecord.csv
      */
     public function deleteParentContent()
     {
@@ -78,7 +78,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/deleteParentContentRecordAndDiscardDeletedParentRecord.csv
+     * See DataSet/deleteParentContentRecordAndDiscardDeletedParentRecord.csv
      */
     public function deleteParentContentAndDiscardDeletedParent()
     {
@@ -92,7 +92,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/copyParentContentRecord.csv
+     * See DataSet/copyParentContentRecord.csv
      */
     public function copyParentContent()
     {
@@ -107,7 +107,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/copyParentContentToDifferentPage.csv
+     * See DataSet/copyParentContentToDifferentPage.csv
      */
     public function copyParentContentToDifferentPage()
     {
@@ -122,7 +122,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/localizeParentContentWAllChildren.csv
+     * See DataSet/localizeParentContentWAllChildren.csv
      */
     public function localizeParentContentWithAllChildren()
     {
@@ -139,7 +139,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/changeParentContentRecordSorting.csv
+     * See DataSet/changeParentContentRecordSorting.csv
      */
     public function changeParentContentSorting()
     {
@@ -157,7 +157,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/moveParentContentRecordToDifferentPage.csv
+     * See DataSet/moveParentContentRecordToDifferentPage.csv
      */
     public function moveParentContentToDifferentPage()
     {
@@ -174,7 +174,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/moveParentContentRecordToDifferentPageAndChangeSorting.csv
+     * See DataSet/moveParentContentRecordToDifferentPageAndChangeSorting.csv
      */
     public function moveParentContentToDifferentPageAndChangeSorting()
     {
@@ -198,7 +198,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyPageRecord.csv
+     * See DataSet/modifyPageRecord.csv
      */
     public function modifyPage()
     {
@@ -215,7 +215,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/deletePageRecord.csv
+     * See DataSet/deletePageRecord.csv
      */
     public function deletePage()
     {
@@ -231,7 +231,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/copyPageRecord.csv
+     * See DataSet/copyPageRecord.csv
      */
     public function copyPage()
     {
@@ -245,7 +245,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/copyPageWHotelBeforeParentContent.csv
+     * See DataSet/copyPageWHotelBeforeParentContent.csv
      */
     public function copyPageWithHotelBeforeParentContent()
     {
@@ -263,7 +263,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createParentContentRecordWithHotelAndOfferChildRecords.csv
+     * See DataSet/createParentContentRecordWithHotelAndOfferChildRecords.csv
      */
     public function createParentContentWithHotelAndOfferChildren()
     {
@@ -280,7 +280,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecords.csv
+     * See DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecords.csv
      */
     public function createAndCopyParentContentWithHotelAndOfferChildren()
     {
@@ -303,7 +303,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecordsAndDiscardCopiedParentRecord.csv
+     * See DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecordsAndDiscardCopiedParentRecord.csv
      */
     public function createAndCopyParentContentWithHotelAndOfferChildrenAndDiscardCopiedParent()
     {
@@ -317,7 +317,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecords.csv
+     * See DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecords.csv
      */
     public function createAndLocalizeParentContentWithHotelAndOfferChildren()
     {
@@ -339,7 +339,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createNLocParentNHotelNOfferChildrenNDiscardCreatedParent.csv
+     * See DataSet/createNLocParentNHotelNOfferChildrenNDiscardCreatedParent.csv
      */
     public function createAndLocalizeParentContentWithHotelAndOfferChildrenAndDiscardCreatedParent()
     {
@@ -353,7 +353,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecordsAndDiscardLocalizedParentRecord.csv
+     * See DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecordsAndDiscardLocalizedParentRecord.csv
      */
     public function createAndLocalizeParentContentWithHotelAndOfferChildrenAndDiscardLocalizedParent()
     {
@@ -367,7 +367,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyOnlyHotelChildRecord.csv
+     * See DataSet/modifyOnlyHotelChildRecord.csv
      */
     public function modifyOnlyHotelChild()
     {
@@ -382,7 +382,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordAndChangeHotelChildRecordsSorting.csv
+     * See DataSet/modifyParentRecordAndChangeHotelChildRecordsSorting.csv
      */
     public function modifyParentAndChangeHotelChildrenSorting()
     {
@@ -397,7 +397,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordWithHotelChildRecord.csv
+     * See DataSet/modifyParentRecordWithHotelChildRecord.csv
      */
     public function modifyParentWithHotelChild()
     {
@@ -412,7 +412,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordWithHotelChildRecordAndDiscardModifiedParentRecord.csv
+     * See DataSet/modifyParentRecordWithHotelChildRecordAndDiscardModifiedParentRecord.csv
      */
     public function modifyParentWithHotelChildAndDiscardModifiedParent()
     {
@@ -433,7 +433,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordWithHotelChildRecordAndDiscardAllModifiedRecords.csv
+     * See DataSet/modifyParentRecordWithHotelChildRecordAndDiscardAllModifiedRecords.csv
      */
     public function modifyParentWithHotelChildAndDiscardAll()
     {
@@ -450,7 +450,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordAndAddHotelChildRecord.csv
+     * See DataSet/modifyParentRecordAndAddHotelChildRecord.csv
      */
     public function modifyParentAndAddHotelChild()
     {
@@ -465,7 +465,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordAndDeleteHotelChildRecord.csv
+     * See DataSet/modifyParentRecordAndDeleteHotelChildRecord.csv
      */
     public function modifyParentAndDeleteHotelChild()
     {
@@ -483,7 +483,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyNDiscardNModifyParentWHotelChild.csv
+     * See DataSet/modifyNDiscardNModifyParentWHotelChild.csv
      */
     public function modifyAndDiscardAndModifyParentWithHotelChild()
     {
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/CSV/Publish/ActionTest.php b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/CSV/Publish/ActionTest.php
index d2fe08f10db02fa2ce58694e80c10a60e3203607..f56637e506f6a491802eb33be7c858421d95da35 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/CSV/Publish/ActionTest.php
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/CSV/Publish/ActionTest.php
@@ -28,7 +28,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createParentContentRecord.csv
+     * See DataSet/createParentContentRecord.csv
      */
     public function createParentContent()
     {
@@ -43,7 +43,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentContentRecord.csv
+     * See DataSet/modifyParentContentRecord.csv
      */
     public function modifyParentContent()
     {
@@ -61,7 +61,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/deleteParentContentRecord.csv
+     * See DataSet/deleteParentContentRecord.csv
      */
     public function deleteParentContent()
     {
@@ -76,7 +76,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/deleteParentContentRecordAndDiscardDeletedParentRecord.csv
+     * See DataSet/deleteParentContentRecordAndDiscardDeletedParentRecord.csv
      */
     public function deleteParentContentAndDiscardDeletedParent()
     {
@@ -92,7 +92,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/copyParentContentRecord.csv
+     * See DataSet/copyParentContentRecord.csv
      */
     public function copyParentContent()
     {
@@ -108,7 +108,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/copyParentContentToDifferentPage.csv
+     * See DataSet/copyParentContentToDifferentPage.csv
      */
     public function copyParentContentToDifferentPage()
     {
@@ -124,7 +124,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/localizeParentContentWAllChildren.csv
+     * See DataSet/localizeParentContentWAllChildren.csv
      */
     public function localizeParentContentWithAllChildren()
     {
@@ -143,7 +143,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/changeParentContentRecordSorting.csv
+     * See DataSet/changeParentContentRecordSorting.csv
      */
     public function changeParentContentSorting()
     {
@@ -162,7 +162,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/moveParentContentRecordToDifferentPage.csv
+     * See DataSet/moveParentContentRecordToDifferentPage.csv
      */
     public function moveParentContentToDifferentPage()
     {
@@ -180,7 +180,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/moveParentContentRecordToDifferentPageAndChangeSorting.csv
+     * See DataSet/moveParentContentRecordToDifferentPageAndChangeSorting.csv
      */
     public function moveParentContentToDifferentPageAndChangeSorting()
     {
@@ -209,7 +209,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyPageRecord.csv
+     * See DataSet/modifyPageRecord.csv
      */
     public function modifyPage()
     {
@@ -227,7 +227,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/deletePageRecord.csv
+     * See DataSet/deletePageRecord.csv
      */
     public function deletePage()
     {
@@ -243,7 +243,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/copyPageRecord.csv
+     * See DataSet/copyPageRecord.csv
      */
     public function copyPage()
     {
@@ -263,7 +263,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/copyPageWHotelBeforeParentContent.csv
+     * See DataSet/copyPageWHotelBeforeParentContent.csv
      */
     public function copyPageWithHotelBeforeParentContent()
     {
@@ -287,7 +287,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createParentContentRecordWithHotelAndOfferChildRecords.csv
+     * See DataSet/createParentContentRecordWithHotelAndOfferChildRecords.csv
      */
     public function createParentContentWithHotelAndOfferChildren()
     {
@@ -305,7 +305,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecords.csv
+     * See DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecords.csv
      */
     public function createAndCopyParentContentWithHotelAndOfferChildren()
     {
@@ -330,7 +330,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecordsAndDiscardCopiedParentRecord.csv
+     * See DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecordsAndDiscardCopiedParentRecord.csv
      */
     public function createAndCopyParentContentWithHotelAndOfferChildrenAndDiscardCopiedParent()
     {
@@ -347,7 +347,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecords.csv
+     * See DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecords.csv
      */
     public function createAndLocalizeParentContentWithHotelAndOfferChildren()
     {
@@ -372,7 +372,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createNLocParentNHotelNOfferChildrenNDiscardCreatedParent.csv
+     * See DataSet/createNLocParentNHotelNOfferChildrenNDiscardCreatedParent.csv
      */
     public function createAndLocalizeParentContentWithHotelAndOfferChildrenAndDiscardCreatedParent()
     {
@@ -388,7 +388,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecordsAndDiscardLocalizedParentRecord.csv
+     * See DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecordsAndDiscardLocalizedParentRecord.csv
      */
     public function createAndLocalizeParentContentWithHotelAndOfferChildrenAndDiscardLocalizedParent()
     {
@@ -405,7 +405,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyOnlyHotelChildRecord.csv
+     * See DataSet/modifyOnlyHotelChildRecord.csv
      */
     public function modifyOnlyHotelChild()
     {
@@ -421,7 +421,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordAndChangeHotelChildRecordsSorting.csv
+     * See DataSet/modifyParentRecordAndChangeHotelChildRecordsSorting.csv
      */
     public function modifyParentAndChangeHotelChildrenSorting()
     {
@@ -437,7 +437,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordWithHotelChildRecord.csv
+     * See DataSet/modifyParentRecordWithHotelChildRecord.csv
      */
     public function modifyParentWithHotelChild()
     {
@@ -453,7 +453,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordWithHotelChildRecordAndDiscardModifiedParentRecord.csv
+     * See DataSet/modifyParentRecordWithHotelChildRecordAndDiscardModifiedParentRecord.csv
      */
     public function modifyParentWithHotelChildAndDiscardModifiedParent()
     {
@@ -477,7 +477,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordWithHotelChildRecordAndDiscardAllModifiedRecords.csv
+     * See DataSet/modifyParentRecordWithHotelChildRecordAndDiscardAllModifiedRecords.csv
      */
     public function modifyParentWithHotelChildAndDiscardAll()
     {
@@ -496,7 +496,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordAndAddHotelChildRecord.csv
+     * See DataSet/modifyParentRecordAndAddHotelChildRecord.csv
      */
     public function modifyParentAndAddHotelChild()
     {
@@ -512,7 +512,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordAndDeleteHotelChildRecord.csv
+     * See DataSet/modifyParentRecordAndDeleteHotelChildRecord.csv
      */
     public function modifyParentAndDeleteHotelChild()
     {
@@ -531,7 +531,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyNDiscardNModifyParentWHotelChild.csv
+     * See DataSet/modifyNDiscardNModifyParentWHotelChild.csv
      */
     public function modifyAndDiscardAndModifyParentWithHotelChild()
     {
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/CSV/PublishAll/ActionTest.php b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/CSV/PublishAll/ActionTest.php
index 78ccf54596a5cabeff0f61161f3a02666d94aa38..84cad37e12f13ff1edb059fbdb49fd3ed1187697 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/CSV/PublishAll/ActionTest.php
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/CSV/PublishAll/ActionTest.php
@@ -28,7 +28,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createParentContentRecord.csv
+     * See DataSet/createParentContentRecord.csv
      */
     public function createParentContent()
     {
@@ -43,7 +43,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentContentRecord.csv
+     * See DataSet/modifyParentContentRecord.csv
      */
     public function modifyParentContent()
     {
@@ -61,7 +61,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/deleteParentContentRecord.csv
+     * See DataSet/deleteParentContentRecord.csv
      */
     public function deleteParentContent()
     {
@@ -76,7 +76,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/deleteParentContentRecordAndDiscardDeletedParentRecord.csv
+     * See DataSet/deleteParentContentRecordAndDiscardDeletedParentRecord.csv
      */
     public function deleteParentContentAndDiscardDeletedParent()
     {
@@ -91,7 +91,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/copyParentContentRecord.csv
+     * See DataSet/copyParentContentRecord.csv
      */
     public function copyParentContent()
     {
@@ -107,7 +107,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/copyParentContentToDifferentPage.csv
+     * See DataSet/copyParentContentToDifferentPage.csv
      */
     public function copyParentContentToDifferentPage()
     {
@@ -123,7 +123,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/localizeParentContentWAllChildren.csv
+     * See DataSet/localizeParentContentWAllChildren.csv
      */
     public function localizeParentContentWithAllChildren()
     {
@@ -141,7 +141,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/changeParentContentRecordSorting.csv
+     * See DataSet/changeParentContentRecordSorting.csv
      */
     public function changeParentContentSorting()
     {
@@ -160,7 +160,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/moveParentContentRecordToDifferentPage.csv
+     * See DataSet/moveParentContentRecordToDifferentPage.csv
      */
     public function moveParentContentToDifferentPage()
     {
@@ -178,7 +178,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/moveParentContentRecordToDifferentPageAndChangeSorting.csv
+     * See DataSet/moveParentContentRecordToDifferentPageAndChangeSorting.csv
      */
     public function moveParentContentToDifferentPageAndChangeSorting()
     {
@@ -203,7 +203,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyPageRecord.csv
+     * See DataSet/modifyPageRecord.csv
      */
     public function modifyPage()
     {
@@ -221,7 +221,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/deletePageRecord.csv
+     * See DataSet/deletePageRecord.csv
      */
     public function deletePage()
     {
@@ -237,7 +237,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/copyPageRecord.csv
+     * See DataSet/copyPageRecord.csv
      */
     public function copyPage()
     {
@@ -252,7 +252,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/copyPageWHotelBeforeParentContent.csv
+     * See DataSet/copyPageWHotelBeforeParentContent.csv
      */
     public function copyPageWithHotelBeforeParentContent()
     {
@@ -271,7 +271,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createParentContentRecordWithHotelAndOfferChildRecords.csv
+     * See DataSet/createParentContentRecordWithHotelAndOfferChildRecords.csv
      */
     public function createParentContentWithHotelAndOfferChildren()
     {
@@ -289,7 +289,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecords.csv
+     * See DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecords.csv
      */
     public function createAndCopyParentContentWithHotelAndOfferChildren()
     {
@@ -313,7 +313,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecordsAndDiscardCopiedParentRecord.csv
+     * See DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecordsAndDiscardCopiedParentRecord.csv
      */
     public function createAndCopyParentContentWithHotelAndOfferChildrenAndDiscardCopiedParent()
     {
@@ -328,7 +328,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecords.csv
+     * See DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecords.csv
      */
     public function createAndLocalizeParentContentWithHotelAndOfferChildren()
     {
@@ -351,7 +351,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createNLocParentNHotelNOfferChildrenNDiscardCreatedParent.csv
+     * See DataSet/createNLocParentNHotelNOfferChildrenNDiscardCreatedParent.csv
      */
     public function createAndLocalizeParentContentWithHotelAndOfferChildrenAndDiscardCreatedParent()
     {
@@ -366,7 +366,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecordsAndDiscardLocalizedParentRecord.csv
+     * See DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecordsAndDiscardLocalizedParentRecord.csv
      */
     public function createAndLocalizeParentContentWithHotelAndOfferChildrenAndDiscardLocalizedParent()
     {
@@ -381,7 +381,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyOnlyHotelChildRecord.csv
+     * See DataSet/modifyOnlyHotelChildRecord.csv
      */
     public function modifyOnlyHotelChild()
     {
@@ -397,7 +397,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordAndChangeHotelChildRecordsSorting.csv
+     * See DataSet/modifyParentRecordAndChangeHotelChildRecordsSorting.csv
      */
     public function modifyParentAndChangeHotelChildrenSorting()
     {
@@ -413,7 +413,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordWithHotelChildRecord.csv
+     * See DataSet/modifyParentRecordWithHotelChildRecord.csv
      */
     public function modifyParentWithHotelChild()
     {
@@ -429,7 +429,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordWithHotelChildRecordAndDiscardModifiedParentRecord.csv
+     * See DataSet/modifyParentRecordWithHotelChildRecordAndDiscardModifiedParentRecord.csv
      */
     public function modifyParentWithHotelChildAndDiscardModifiedParent()
     {
@@ -451,7 +451,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordWithHotelChildRecordAndDiscardAllModifiedRecords.csv
+     * See DataSet/modifyParentRecordWithHotelChildRecordAndDiscardAllModifiedRecords.csv
      */
     public function modifyParentWithHotelChildAndDiscardAll()
     {
@@ -469,7 +469,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordAndAddHotelChildRecord.csv
+     * See DataSet/modifyParentRecordAndAddHotelChildRecord.csv
      */
     public function modifyParentAndAddHotelChild()
     {
@@ -485,7 +485,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordAndDeleteHotelChildRecord.csv
+     * See DataSet/modifyParentRecordAndDeleteHotelChildRecord.csv
      */
     public function modifyParentAndDeleteHotelChild()
     {
@@ -504,7 +504,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyNDiscardNModifyParentWHotelChild.csv
+     * See DataSet/modifyNDiscardNModifyParentWHotelChild.csv
      */
     public function modifyAndDiscardAndModifyParentWithHotelChild()
     {
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/AbstractActionTestCase.php b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/AbstractActionTestCase.php
index 210c56a3f581a920745ec90c3ffa40a577de6be6..24687694384adbee245dbb6dc36ee134344eb19e 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/AbstractActionTestCase.php
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/AbstractActionTestCase.php
@@ -46,7 +46,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
      */
 
     /**
-     * @see DataSet/deleteParentContentRecordAndDiscardDeletedParentRecord.csv
+     * See DataSet/deleteParentContentRecordAndDiscardDeletedParentRecord.csv
      */
     public function deleteParentContentAndDiscardDeletedParent()
     {
@@ -60,7 +60,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
      */
 
     /**
-     * @see DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecordsAndDiscardCopiedParentRecord.csv
+     * See DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecordsAndDiscardCopiedParentRecord.csv
      */
     public function createAndCopyParentContentWithHotelAndOfferChildrenAndDiscardCopiedParent()
     {
@@ -80,7 +80,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/createNLocParentNHotelNOfferChildrenNDiscardCreatedParent.csv
+     * See DataSet/createNLocParentNHotelNOfferChildrenNDiscardCreatedParent.csv
      */
     public function createAndLocalizeParentContentWithHotelAndOfferChildrenAndDiscardCreatedParent()
     {
@@ -100,7 +100,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecordsAndDiscardLocalizedParentRecord.csv
+     * See DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecordsAndDiscardLocalizedParentRecord.csv
      */
     public function createAndLocalizeParentContentWithHotelAndOfferChildrenAndDiscardLocalizedParent()
     {
@@ -120,7 +120,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/modifyParentRecordWithHotelChildRecordAndDiscardModifiedParentRecord.csv
+     * See DataSet/modifyParentRecordWithHotelChildRecordAndDiscardModifiedParentRecord.csv
      */
     public function modifyParentWithHotelChildAndDiscardModifiedParent()
     {
@@ -136,7 +136,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/modifyParentRecordWithHotelChildRecordAndDiscardAllModifiedRecords.csv
+     * See DataSet/modifyParentRecordWithHotelChildRecordAndDiscardAllModifiedRecords.csv
      */
     public function modifyParentWithHotelChildAndDiscardAll()
     {
@@ -158,7 +158,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/modifyNDiscardNModifyParentWHotelChild.csv
+     * See DataSet/modifyNDiscardNModifyParentWHotelChild.csv
      */
     public function modifyAndDiscardAndModifyParentWithHotelChild()
     {
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Modify/ActionTest.php b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Modify/ActionTest.php
index cac885f679d939e16cc3e314c3e46214b19de8b2..ab5dece7dd64dc59d01247ed622f1ac1b55ae8e4 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Modify/ActionTest.php
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Modify/ActionTest.php
@@ -33,7 +33,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createParentContentRecord.csv
+     * See DataSet/createParentContentRecord.csv
      */
     public function createParentContent()
     {
@@ -47,7 +47,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentContentRecord.csv
+     * See DataSet/modifyParentContentRecord.csv
      */
     public function modifyParentContent()
     {
@@ -64,7 +64,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/deleteParentContentRecord.csv
+     * See DataSet/deleteParentContentRecord.csv
      */
     public function deleteParentContent()
     {
@@ -78,7 +78,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/deleteParentContentRecordAndDiscardDeletedParentRecord.csv
+     * See DataSet/deleteParentContentRecordAndDiscardDeletedParentRecord.csv
      */
     public function deleteParentContentAndDiscardDeletedParent()
     {
@@ -92,7 +92,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/copyParentContentRecord.csv
+     * See DataSet/copyParentContentRecord.csv
      */
     public function copyParentContent()
     {
@@ -107,7 +107,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/copyParentContentToDifferentPage.csv
+     * See DataSet/copyParentContentToDifferentPage.csv
      */
     public function copyParentContentToDifferentPage()
     {
@@ -122,7 +122,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/localizeParentContentWAllChildren.csv
+     * See DataSet/localizeParentContentWAllChildren.csv
      */
     public function localizeParentContentWithAllChildren()
     {
@@ -139,7 +139,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/changeParentContentRecordSorting.csv
+     * See DataSet/changeParentContentRecordSorting.csv
      */
     public function changeParentContentSorting()
     {
@@ -157,7 +157,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/moveParentContentRecordToDifferentPage.csv
+     * See DataSet/moveParentContentRecordToDifferentPage.csv
      */
     public function moveParentContentToDifferentPage()
     {
@@ -174,7 +174,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/moveParentContentRecordToDifferentPageAndChangeSorting.csv
+     * See DataSet/moveParentContentRecordToDifferentPageAndChangeSorting.csv
      */
     public function moveParentContentToDifferentPageAndChangeSorting()
     {
@@ -198,7 +198,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyPageRecord.csv
+     * See DataSet/modifyPageRecord.csv
      */
     public function modifyPage()
     {
@@ -215,7 +215,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/deletePageRecord.csv
+     * See DataSet/deletePageRecord.csv
      */
     public function deletePage()
     {
@@ -231,7 +231,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/copyPageRecord.csv
+     * See DataSet/copyPageRecord.csv
      */
     public function copyPage()
     {
@@ -245,7 +245,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/copyPageWHotelBeforeParentContent.csv
+     * See DataSet/copyPageWHotelBeforeParentContent.csv
      */
     public function copyPageWithHotelBeforeParentContent()
     {
@@ -263,7 +263,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createParentContentRecordWithHotelAndOfferChildRecords.csv
+     * See DataSet/createParentContentRecordWithHotelAndOfferChildRecords.csv
      */
     public function createParentContentWithHotelAndOfferChildren()
     {
@@ -280,7 +280,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecords.csv
+     * See DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecords.csv
      */
     public function createAndCopyParentContentWithHotelAndOfferChildren()
     {
@@ -303,7 +303,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecordsAndDiscardCopiedParentRecord.csv
+     * See DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecordsAndDiscardCopiedParentRecord.csv
      */
     public function createAndCopyParentContentWithHotelAndOfferChildrenAndDiscardCopiedParent()
     {
@@ -317,7 +317,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecords.csv
+     * See DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecords.csv
      */
     public function createAndLocalizeParentContentWithHotelAndOfferChildren()
     {
@@ -339,7 +339,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createNLocalizeParentContentNHotelNOfferChildrenWOSortBy.csv
+     * See DataSet/createNLocalizeParentContentNHotelNOfferChildrenWOSortBy.csv
      */
     public function createAndLocalizeParentContentWithHotelAndOfferChildrenWithoutSortByConfiguration()
     {
@@ -361,7 +361,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createNLocParentNHotelNOfferChildrenNDiscardCreatedParent.csv
+     * See DataSet/createNLocParentNHotelNOfferChildrenNDiscardCreatedParent.csv
      */
     public function createAndLocalizeParentContentWithHotelAndOfferChildrenAndDiscardCreatedParent()
     {
@@ -375,7 +375,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecordsAndDiscardLocalizedParentRecord.csv
+     * See DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecordsAndDiscardLocalizedParentRecord.csv
      */
     public function createAndLocalizeParentContentWithHotelAndOfferChildrenAndDiscardLocalizedParent()
     {
@@ -389,7 +389,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyOnlyHotelChildRecord.csv
+     * See DataSet/modifyOnlyHotelChildRecord.csv
      */
     public function modifyOnlyHotelChild()
     {
@@ -404,7 +404,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordAndChangeHotelChildRecordsSorting.csv
+     * See DataSet/modifyParentRecordAndChangeHotelChildRecordsSorting.csv
      */
     public function modifyParentAndChangeHotelChildrenSorting()
     {
@@ -419,7 +419,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordWithHotelChildRecord.csv
+     * See DataSet/modifyParentRecordWithHotelChildRecord.csv
      */
     public function modifyParentWithHotelChild()
     {
@@ -434,7 +434,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordWithHotelChildRecordAndDiscardModifiedParentRecord.csv
+     * See DataSet/modifyParentRecordWithHotelChildRecordAndDiscardModifiedParentRecord.csv
      */
     public function modifyParentWithHotelChildAndDiscardModifiedParent()
     {
@@ -455,7 +455,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordWithHotelChildRecordAndDiscardAllModifiedRecords.csv
+     * See DataSet/modifyParentRecordWithHotelChildRecordAndDiscardAllModifiedRecords.csv
      */
     public function modifyParentWithHotelChildAndDiscardAll()
     {
@@ -472,7 +472,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordAndAddHotelChildRecord.csv
+     * See DataSet/modifyParentRecordAndAddHotelChildRecord.csv
      */
     public function modifyParentAndAddHotelChild()
     {
@@ -487,7 +487,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordAndDeleteHotelChildRecord.csv
+     * See DataSet/modifyParentRecordAndDeleteHotelChildRecord.csv
      */
     public function modifyParentAndDeleteHotelChild()
     {
@@ -505,7 +505,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyNDiscardNModifyParentWHotelChild.csv
+     * See DataSet/modifyNDiscardNModifyParentWHotelChild.csv
      */
     public function modifyAndDiscardAndModifyParentWithHotelChild()
     {
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/ActionTest.php b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/ActionTest.php
index 2f8968659cea7c6d0099c8472838ef049567ed68..f7edef01f4dc039418ba25a0058760cb7c85c71a 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/ActionTest.php
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/Publish/ActionTest.php
@@ -32,7 +32,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createParentContentRecord.csv
+     * See DataSet/createParentContentRecord.csv
      */
     public function createParentContent()
     {
@@ -47,7 +47,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentContentRecord.csv
+     * See DataSet/modifyParentContentRecord.csv
      */
     public function modifyParentContent()
     {
@@ -65,7 +65,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/deleteParentContentRecord.csv
+     * See DataSet/deleteParentContentRecord.csv
      */
     public function deleteParentContent()
     {
@@ -80,7 +80,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/deleteParentContentRecordAndDiscardDeletedParentRecord.csv
+     * See DataSet/deleteParentContentRecordAndDiscardDeletedParentRecord.csv
      */
     public function deleteParentContentAndDiscardDeletedParent()
     {
@@ -96,7 +96,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/copyParentContentRecord.csv
+     * See DataSet/copyParentContentRecord.csv
      */
     public function copyParentContent()
     {
@@ -112,7 +112,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/copyParentContentToDifferentPage.csv
+     * See DataSet/copyParentContentToDifferentPage.csv
      */
     public function copyParentContentToDifferentPage()
     {
@@ -128,7 +128,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/localizeParentContentWAllChildren.csv
+     * See DataSet/localizeParentContentWAllChildren.csv
      */
     public function localizeParentContentWithAllChildren()
     {
@@ -147,7 +147,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/changeParentContentRecordSorting.csv
+     * See DataSet/changeParentContentRecordSorting.csv
      */
     public function changeParentContentSorting()
     {
@@ -166,7 +166,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/moveParentContentRecordToDifferentPage.csv
+     * See DataSet/moveParentContentRecordToDifferentPage.csv
      */
     public function moveParentContentToDifferentPage()
     {
@@ -185,7 +185,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/moveParentContentRecordToDifferentPageAndChangeSorting.csv
+     * See DataSet/moveParentContentRecordToDifferentPageAndChangeSorting.csv
      */
     public function moveParentContentToDifferentPageAndChangeSorting()
     {
@@ -214,7 +214,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyPageRecord.csv
+     * See DataSet/modifyPageRecord.csv
      */
     public function modifyPage()
     {
@@ -232,7 +232,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/deletePageRecord.csv
+     * See DataSet/deletePageRecord.csv
      */
     public function deletePage()
     {
@@ -248,7 +248,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/copyPageRecord.csv
+     * See DataSet/copyPageRecord.csv
      */
     public function copyPage()
     {
@@ -268,7 +268,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/copyPageWHotelBeforeParentContent.csv
+     * See DataSet/copyPageWHotelBeforeParentContent.csv
      */
     public function copyPageWithHotelBeforeParentContent()
     {
@@ -292,7 +292,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createParentContentRecordWithHotelAndOfferChildRecords.csv
+     * See DataSet/createParentContentRecordWithHotelAndOfferChildRecords.csv
      */
     public function createParentContentWithHotelAndOfferChildren()
     {
@@ -310,7 +310,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecords.csv
+     * See DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecords.csv
      */
     public function createAndCopyParentContentWithHotelAndOfferChildren()
     {
@@ -335,7 +335,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecordsAndDiscardCopiedParentRecord.csv
+     * See DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecordsAndDiscardCopiedParentRecord.csv
      */
     public function createAndCopyParentContentWithHotelAndOfferChildrenAndDiscardCopiedParent()
     {
@@ -352,7 +352,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecords.csv
+     * See DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecords.csv
      */
     public function createAndLocalizeParentContentWithHotelAndOfferChildren()
     {
@@ -377,7 +377,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createNLocParentNHotelNOfferChildrenNDiscardCreatedParent.csv
+     * See DataSet/createNLocParentNHotelNOfferChildrenNDiscardCreatedParent.csv
      */
     public function createAndLocalizeParentContentWithHotelAndOfferChildrenAndDiscardCreatedParent()
     {
@@ -393,7 +393,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecordsAndDiscardLocalizedParentRecord.csv
+     * See DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecordsAndDiscardLocalizedParentRecord.csv
      */
     public function createAndLocalizeParentContentWithHotelAndOfferChildrenAndDiscardLocalizedParent()
     {
@@ -410,7 +410,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyOnlyHotelChildRecord.csv
+     * See DataSet/modifyOnlyHotelChildRecord.csv
      */
     public function modifyOnlyHotelChild()
     {
@@ -426,7 +426,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordAndChangeHotelChildRecordsSorting.csv
+     * See DataSet/modifyParentRecordAndChangeHotelChildRecordsSorting.csv
      */
     public function modifyParentAndChangeHotelChildrenSorting()
     {
@@ -442,7 +442,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordWithHotelChildRecord.csv
+     * See DataSet/modifyParentRecordWithHotelChildRecord.csv
      */
     public function modifyParentWithHotelChild()
     {
@@ -458,7 +458,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordWithHotelChildRecordAndDiscardModifiedParentRecord.csv
+     * See DataSet/modifyParentRecordWithHotelChildRecordAndDiscardModifiedParentRecord.csv
      */
     public function modifyParentWithHotelChildAndDiscardModifiedParent()
     {
@@ -482,7 +482,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordWithHotelChildRecordAndDiscardAllModifiedRecords.csv
+     * See DataSet/modifyParentRecordWithHotelChildRecordAndDiscardAllModifiedRecords.csv
      */
     public function modifyParentWithHotelChildAndDiscardAll()
     {
@@ -501,7 +501,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordAndAddHotelChildRecord.csv
+     * See DataSet/modifyParentRecordAndAddHotelChildRecord.csv
      */
     public function modifyParentAndAddHotelChild()
     {
@@ -517,7 +517,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordAndDeleteHotelChildRecord.csv
+     * See DataSet/modifyParentRecordAndDeleteHotelChildRecord.csv
      */
     public function modifyParentAndDeleteHotelChild()
     {
@@ -536,7 +536,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyNDiscardNModifyParentWHotelChild.csv
+     * See DataSet/modifyNDiscardNModifyParentWHotelChild.csv
      */
     public function modifyAndDiscardAndModifyParentWithHotelChild()
     {
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/ActionTest.php b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/ActionTest.php
index e1c5e256455f81eb325fcbf9533bcac7a894ae97..85b9a8ffc56156e470cff7cb290ead4b12455b99 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/ActionTest.php
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/IRRE/ForeignField/PublishAll/ActionTest.php
@@ -32,7 +32,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createParentContentRecord.csv
+     * See DataSet/createParentContentRecord.csv
      */
     public function createParentContent()
     {
@@ -47,7 +47,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentContentRecord.csv
+     * See DataSet/modifyParentContentRecord.csv
      */
     public function modifyParentContent()
     {
@@ -65,7 +65,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/deleteParentContentRecord.csv
+     * See DataSet/deleteParentContentRecord.csv
      */
     public function deleteParentContent()
     {
@@ -80,7 +80,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/deleteParentContentRecordAndDiscardDeletedParentRecord.csv
+     * See DataSet/deleteParentContentRecordAndDiscardDeletedParentRecord.csv
      */
     public function deleteParentContentAndDiscardDeletedParent()
     {
@@ -95,7 +95,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/copyParentContentRecord.csv
+     * See DataSet/copyParentContentRecord.csv
      */
     public function copyParentContent()
     {
@@ -111,7 +111,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/copyParentContentToDifferentPage.csv
+     * See DataSet/copyParentContentToDifferentPage.csv
      */
     public function copyParentContentToDifferentPage()
     {
@@ -127,7 +127,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/localizeParentContentWAllChildren.csv
+     * See DataSet/localizeParentContentWAllChildren.csv
      */
     public function localizeParentContentWithAllChildren()
     {
@@ -145,7 +145,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/changeParentContentRecordSorting.csv
+     * See DataSet/changeParentContentRecordSorting.csv
      */
     public function changeParentContentSorting()
     {
@@ -164,7 +164,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/moveParentContentRecordToDifferentPage.csv
+     * See DataSet/moveParentContentRecordToDifferentPage.csv
      */
     public function moveParentContentToDifferentPage()
     {
@@ -183,7 +183,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/moveParentContentRecordToDifferentPageAndChangeSorting.csv
+     * See DataSet/moveParentContentRecordToDifferentPageAndChangeSorting.csv
      */
     public function moveParentContentToDifferentPageAndChangeSorting()
     {
@@ -208,7 +208,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyPageRecord.csv
+     * See DataSet/modifyPageRecord.csv
      */
     public function modifyPage()
     {
@@ -226,7 +226,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/deletePageRecord.csv
+     * See DataSet/deletePageRecord.csv
      */
     public function deletePage()
     {
@@ -242,7 +242,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/copyPageRecord.csv
+     * See DataSet/copyPageRecord.csv
      */
     public function copyPage()
     {
@@ -257,7 +257,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/copyPageWHotelBeforeParentContent.csv
+     * See DataSet/copyPageWHotelBeforeParentContent.csv
      */
     public function copyPageWithHotelBeforeParentContent()
     {
@@ -276,7 +276,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createParentContentRecordWithHotelAndOfferChildRecords.csv
+     * See DataSet/createParentContentRecordWithHotelAndOfferChildRecords.csv
      */
     public function createParentContentWithHotelAndOfferChildren()
     {
@@ -294,7 +294,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecords.csv
+     * See DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecords.csv
      */
     public function createAndCopyParentContentWithHotelAndOfferChildren()
     {
@@ -318,7 +318,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecordsAndDiscardCopiedParentRecord.csv
+     * See DataSet/createAndCopyParentContentRecordWithHotelAndOfferChildRecordsAndDiscardCopiedParentRecord.csv
      */
     public function createAndCopyParentContentWithHotelAndOfferChildrenAndDiscardCopiedParent()
     {
@@ -333,7 +333,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecords.csv
+     * See DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecords.csv
      */
     public function createAndLocalizeParentContentWithHotelAndOfferChildren()
     {
@@ -356,7 +356,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createNLocParentNHotelNOfferChildrenNDiscardCreatedParent.csv
+     * See DataSet/createNLocParentNHotelNOfferChildrenNDiscardCreatedParent.csv
      */
     public function createAndLocalizeParentContentWithHotelAndOfferChildrenAndDiscardCreatedParent()
     {
@@ -371,7 +371,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecordsAndDiscardLocalizedParentRecord.csv
+     * See DataSet/createAndLocalizeParentContentRecordWithHotelAndOfferChildRecordsAndDiscardLocalizedParentRecord.csv
      */
     public function createAndLocalizeParentContentWithHotelAndOfferChildrenAndDiscardLocalizedParent()
     {
@@ -386,7 +386,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyOnlyHotelChildRecord.csv
+     * See DataSet/modifyOnlyHotelChildRecord.csv
      */
     public function modifyOnlyHotelChild()
     {
@@ -402,7 +402,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordAndChangeHotelChildRecordsSorting.csv
+     * See DataSet/modifyParentRecordAndChangeHotelChildRecordsSorting.csv
      */
     public function modifyParentAndChangeHotelChildrenSorting()
     {
@@ -418,7 +418,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordWithHotelChildRecord.csv
+     * See DataSet/modifyParentRecordWithHotelChildRecord.csv
      */
     public function modifyParentWithHotelChild()
     {
@@ -434,7 +434,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordWithHotelChildRecordAndDiscardModifiedParentRecord.csv
+     * See DataSet/modifyParentRecordWithHotelChildRecordAndDiscardModifiedParentRecord.csv
      */
     public function modifyParentWithHotelChildAndDiscardModifiedParent()
     {
@@ -456,7 +456,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordWithHotelChildRecordAndDiscardAllModifiedRecords.csv
+     * See DataSet/modifyParentRecordWithHotelChildRecordAndDiscardAllModifiedRecords.csv
      */
     public function modifyParentWithHotelChildAndDiscardAll()
     {
@@ -474,7 +474,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordAndAddHotelChildRecord.csv
+     * See DataSet/modifyParentRecordAndAddHotelChildRecord.csv
      */
     public function modifyParentAndAddHotelChild()
     {
@@ -490,7 +490,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyParentRecordAndDeleteHotelChildRecord.csv
+     * See DataSet/modifyParentRecordAndDeleteHotelChildRecord.csv
      */
     public function modifyParentAndDeleteHotelChild()
     {
@@ -509,7 +509,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\IRR
 
     /**
      * @test
-     * @see DataSet/modifyNDiscardNModifyParentWHotelChild.csv
+     * See DataSet/modifyNDiscardNModifyParentWHotelChild.csv
      */
     public function modifyAndDiscardAndModifyParentWithHotelChild()
     {
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/AbstractActionTestCase.php b/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/AbstractActionTestCase.php
index b9bb1dcd464262227aea6a61fabda6eca78d0f35..753391d8e83cd37f7e1904eb86d843fdf48d6552 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/AbstractActionTestCase.php
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/AbstractActionTestCase.php
@@ -47,7 +47,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
      */
 
     /**
-     * @see DataSet/createContentRecordAndAddCategoryRelation.csv
+     * See DataSet/createContentRecordAndAddCategoryRelation.csv
      */
     public function createContentAndAddRelation()
     {
@@ -60,7 +60,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/createCategoryRecordAndAddCategoryRelation.csv
+     * See DataSet/createCategoryRecordAndAddCategoryRelation.csv
      */
     public function createCategoryAndAddRelation()
     {
@@ -73,7 +73,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/createContentRecordAndCreateCategoryRelation.csv
+     * See DataSet/createContentRecordAndCreateCategoryRelation.csv
      */
     public function createContentAndCreateRelation()
     {
@@ -89,7 +89,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/createCategoryRecordAndCreateCategoryRelation.csv
+     * See DataSet/createCategoryRecordAndCreateCategoryRelation.csv
      */
     public function createCategoryAndCreateRelation()
     {
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/Modify/ActionTest.php b/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/Modify/ActionTest.php
index 4cfe37291886f8246c0276eebb66813ed03028dc..4c1d6c431e23a440bf72c2c879eef893e588660a 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/Modify/ActionTest.php
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/Modify/ActionTest.php
@@ -30,7 +30,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/addCategoryRelation.csv
+     * See DataSet/addCategoryRelation.csv
      */
     public function addCategoryRelation()
     {
@@ -45,7 +45,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/deleteCategoryRelation.csv
+     * See DataSet/deleteCategoryRelation.csv
      */
     public function deleteCategoryRelation()
     {
@@ -63,7 +63,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/changeCategoryRelationSorting.csv
+     * See DataSet/changeCategoryRelationSorting.csv
      */
     public function changeCategoryRelationSorting()
     {
@@ -78,7 +78,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/createContentRecordAndAddCategoryRelation.csv
+     * See DataSet/createContentRecordAndAddCategoryRelation.csv
      */
     public function createContentAndAddRelation()
     {
@@ -95,7 +95,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/createCategoryRecordAndAddCategoryRelation.csv
+     * See DataSet/createCategoryRecordAndAddCategoryRelation.csv
      */
     public function createCategoryAndAddRelation()
     {
@@ -112,7 +112,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/createContentRecordAndCreateCategoryRelation.csv
+     * See DataSet/createContentRecordAndCreateCategoryRelation.csv
      */
     public function createContentAndCreateRelation()
     {
@@ -129,7 +129,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/createCategoryRecordAndCreateCategoryRelation.csv
+     * See DataSet/createCategoryRecordAndCreateCategoryRelation.csv
      */
     public function createCategoryAndCreateRelation()
     {
@@ -139,7 +139,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/createContentWCategoryNAddRelation.csv
+     * See DataSet/createContentWCategoryNAddRelation.csv
      */
     public function createContentWithCategoryAndAddRelation()
     {
@@ -149,7 +149,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/createCategoryWContentNAddRelation.csv
+     * See DataSet/createCategoryWContentNAddRelation.csv
      */
     public function createCategoryWithContentAndAddRelation()
     {
@@ -159,7 +159,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/modifyCategoryRecordOfCategoryRelation.csv
+     * See DataSet/modifyCategoryRecordOfCategoryRelation.csv
      */
     public function modifyCategoryOfRelation()
     {
@@ -174,7 +174,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/modifyContentRecordOfCategoryRelation.csv
+     * See DataSet/modifyContentRecordOfCategoryRelation.csv
      */
     public function modifyContentOfRelation()
     {
@@ -188,7 +188,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/modifyBothRecordsOfCategoryRelation.csv
+     * See DataSet/modifyBothRecordsOfCategoryRelation.csv
      */
     public function modifyBothsOfRelation()
     {
@@ -205,7 +205,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/deleteContentRecordOfCategoryRelation.csv
+     * See DataSet/deleteContentRecordOfCategoryRelation.csv
      */
     public function deleteContentOfRelation()
     {
@@ -219,7 +219,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/deleteCategoryRecordOfCategoryRelation.csv
+     * See DataSet/deleteCategoryRecordOfCategoryRelation.csv
      */
     public function deleteCategoryOfRelation()
     {
@@ -234,7 +234,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/copyContentRecordOfCategoryRelation.csv
+     * See DataSet/copyContentRecordOfCategoryRelation.csv
      */
     public function copyContentOfRelation()
     {
@@ -249,7 +249,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/copyCategoryRecordOfCategoryRelation.csv
+     * See DataSet/copyCategoryRecordOfCategoryRelation.csv
      */
     public function copyCategoryOfRelation()
     {
@@ -264,7 +264,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/localizeContentRecordOfCategoryRelation.csv
+     * See DataSet/localizeContentRecordOfCategoryRelation.csv
      */
     public function localizeContentOfRelation()
     {
@@ -279,7 +279,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/localizeCategoryRecordOfCategoryRelation.csv
+     * See DataSet/localizeCategoryRecordOfCategoryRelation.csv
      */
     public function localizeCategoryOfRelation()
     {
@@ -296,7 +296,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/moveContentRecordOfCategoryRelationToDifferentPage.csv
+     * See DataSet/moveContentRecordOfCategoryRelationToDifferentPage.csv
      */
     public function moveContentOfRelationToDifferentPage()
     {
@@ -311,7 +311,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/copyPage.csv
+     * See DataSet/copyPage.csv
      */
     public function copyPage()
     {
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/Publish/ActionTest.php b/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/Publish/ActionTest.php
index 0eae14d0e49aa6d24462f53325b184a7223502e4..7a01f41536c2f63cd2c83f28a6fede63c25d24a9 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/Publish/ActionTest.php
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/Publish/ActionTest.php
@@ -30,7 +30,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/addCategoryRelation.csv
+     * See DataSet/addCategoryRelation.csv
      */
     public function addCategoryRelation()
     {
@@ -46,7 +46,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/deleteCategoryRelation.csv
+     * See DataSet/deleteCategoryRelation.csv
      */
     public function deleteCategoryRelation()
     {
@@ -65,7 +65,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/changeCategoryRelationSorting.csv
+     * See DataSet/changeCategoryRelationSorting.csv
      */
     public function changeCategoryRelationSorting()
     {
@@ -81,7 +81,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/createContentRecordAndAddCategoryRelation.csv
+     * See DataSet/createContentRecordAndAddCategoryRelation.csv
      */
     public function createContentAndAddRelation()
     {
@@ -99,7 +99,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/createCategoryRecordAndAddCategoryRelation.csv
+     * See DataSet/createCategoryRecordAndAddCategoryRelation.csv
      */
     public function createCategoryAndAddRelation()
     {
@@ -117,7 +117,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/createContentRecordAndCreateCategoryRelation.csv
+     * See DataSet/createContentRecordAndCreateCategoryRelation.csv
      */
     public function createContentAndCreateRelation()
     {
@@ -140,7 +140,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/createCategoryRecordAndCreateCategoryRelation.csv
+     * See DataSet/createCategoryRecordAndCreateCategoryRelation.csv
      */
     public function createCategoryAndCreateRelation()
     {
@@ -157,7 +157,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/createContentWCategoryNAddRelation.csv
+     * See DataSet/createContentWCategoryNAddRelation.csv
      */
     public function createContentWithCategoryAndAddRelation()
     {
@@ -173,7 +173,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/createCategoryWContentNAddRelation.csv
+     * See DataSet/createCategoryWContentNAddRelation.csv
      */
     public function createCategoryWithContentAndAddRelation()
     {
@@ -189,7 +189,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/modifyCategoryRecordOfCategoryRelation.csv
+     * See DataSet/modifyCategoryRecordOfCategoryRelation.csv
      */
     public function modifyCategoryOfRelation()
     {
@@ -205,7 +205,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/modifyContentRecordOfCategoryRelation.csv
+     * See DataSet/modifyContentRecordOfCategoryRelation.csv
      */
     public function modifyContentOfRelation()
     {
@@ -220,7 +220,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/modifyBothRecordsOfCategoryRelation.csv
+     * See DataSet/modifyBothRecordsOfCategoryRelation.csv
      */
     public function modifyBothsOfRelation()
     {
@@ -243,7 +243,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/deleteContentRecordOfCategoryRelation.csv
+     * See DataSet/deleteContentRecordOfCategoryRelation.csv
      */
     public function deleteContentOfRelation()
     {
@@ -258,7 +258,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/deleteCategoryRecordOfCategoryRelation.csv
+     * See DataSet/deleteCategoryRecordOfCategoryRelation.csv
      */
     public function deleteCategoryOfRelation()
     {
@@ -274,7 +274,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/copyContentRecordOfCategoryRelation.csv
+     * See DataSet/copyContentRecordOfCategoryRelation.csv
      */
     public function copyContentOfRelation()
     {
@@ -290,7 +290,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/copyCategoryRecordOfCategoryRelation.csv
+     * See DataSet/copyCategoryRecordOfCategoryRelation.csv
      */
     public function copyCategoryOfRelation()
     {
@@ -306,7 +306,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/localizeContentRecordOfCategoryRelation.csv
+     * See DataSet/localizeContentRecordOfCategoryRelation.csv
      */
     public function localizeContentOfRelation()
     {
@@ -322,7 +322,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/localizeCategoryRecordOfCategoryRelation.csv
+     * See DataSet/localizeCategoryRecordOfCategoryRelation.csv
      */
     public function localizeCategoryOfRelation()
     {
@@ -341,7 +341,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/moveContentRecordOfCategoryRelationToDifferentPage.csv
+     * See DataSet/moveContentRecordOfCategoryRelationToDifferentPage.csv
      */
     public function moveContentOfRelationToDifferentPage()
     {
@@ -357,7 +357,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/copyPage.csv
+     * See DataSet/copyPage.csv
      */
     public function copyPage()
     {
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/PublishAll/ActionTest.php b/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/PublishAll/ActionTest.php
index 253fc4fd08036190847151fc941271af0a899ba6..5a47edf88cf1ff5712188091a98d73f18598b998 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/PublishAll/ActionTest.php
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/ManyToMany/PublishAll/ActionTest.php
@@ -30,7 +30,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/addCategoryRelation.csv
+     * See DataSet/addCategoryRelation.csv
      */
     public function addCategoryRelation()
     {
@@ -46,7 +46,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/deleteCategoryRelation.csv
+     * See DataSet/deleteCategoryRelation.csv
      */
     public function deleteCategoryRelation()
     {
@@ -65,7 +65,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/changeCategoryRelationSorting.csv
+     * See DataSet/changeCategoryRelationSorting.csv
      */
     public function changeCategoryRelationSorting()
     {
@@ -81,7 +81,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/createContentRecordAndAddCategoryRelation.csv
+     * See DataSet/createContentRecordAndAddCategoryRelation.csv
      */
     public function createContentAndAddRelation()
     {
@@ -99,7 +99,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/createCategoryRecordAndAddCategoryRelation.csv
+     * See DataSet/createCategoryRecordAndAddCategoryRelation.csv
      */
     public function createCategoryAndAddRelation()
     {
@@ -117,7 +117,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/createContentRecordAndCreateCategoryRelation.csv
+     * See DataSet/createContentRecordAndCreateCategoryRelation.csv
      */
     public function createContentAndCreateRelation()
     {
@@ -135,7 +135,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/createCategoryRecordAndCreateCategoryRelation.csv
+     * See DataSet/createCategoryRecordAndCreateCategoryRelation.csv
      */
     public function createCategoryAndCreateRelation()
     {
@@ -146,7 +146,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/createContentWCategoryNAddRelation.csv
+     * See DataSet/createContentWCategoryNAddRelation.csv
      */
     public function createContentWithCategoryAndAddRelation()
     {
@@ -157,7 +157,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/createCategoryWContentNAddRelation.csv
+     * See DataSet/createCategoryWContentNAddRelation.csv
      */
     public function createCategoryWithContentAndAddRelation()
     {
@@ -168,7 +168,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/modifyCategoryRecordOfCategoryRelation.csv
+     * See DataSet/modifyCategoryRecordOfCategoryRelation.csv
      */
     public function modifyCategoryOfRelation()
     {
@@ -184,7 +184,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/modifyContentRecordOfCategoryRelation.csv
+     * See DataSet/modifyContentRecordOfCategoryRelation.csv
      */
     public function modifyContentOfRelation()
     {
@@ -199,7 +199,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/modifyBothRecordsOfCategoryRelation.csv
+     * See DataSet/modifyBothRecordsOfCategoryRelation.csv
      */
     public function modifyBothsOfRelation()
     {
@@ -217,7 +217,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/deleteContentRecordOfCategoryRelation.csv
+     * See DataSet/deleteContentRecordOfCategoryRelation.csv
      */
     public function deleteContentOfRelation()
     {
@@ -232,7 +232,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/deleteCategoryRecordOfCategoryRelation.csv
+     * See DataSet/deleteCategoryRecordOfCategoryRelation.csv
      */
     public function deleteCategoryOfRelation()
     {
@@ -248,7 +248,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/copyContentRecordOfCategoryRelation.csv
+     * See DataSet/copyContentRecordOfCategoryRelation.csv
      */
     public function copyContentOfRelation()
     {
@@ -264,7 +264,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/copyCategoryRecordOfCategoryRelation.csv
+     * See DataSet/copyCategoryRecordOfCategoryRelation.csv
      */
     public function copyCategoryOfRelation()
     {
@@ -280,7 +280,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/localizeContentRecordOfCategoryRelation.csv
+     * See DataSet/localizeContentRecordOfCategoryRelation.csv
      */
     public function localizeContentOfRelation()
     {
@@ -296,7 +296,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/localizeCategoryRecordOfCategoryRelation.csv
+     * See DataSet/localizeCategoryRecordOfCategoryRelation.csv
      */
     public function localizeCategoryOfRelation()
     {
@@ -314,7 +314,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/moveContentRecordOfCategoryRelationToDifferentPage.csv
+     * See DataSet/moveContentRecordOfCategoryRelationToDifferentPage.csv
      */
     public function moveContentOfRelationToDifferentPage()
     {
@@ -330,7 +330,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Man
 
     /**
      * @test
-     * @see DataSet/copyPage.csv
+     * See DataSet/copyPage.csv
      */
     public function copyPage()
     {
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/AbstractActionTestCase.php b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/AbstractActionTestCase.php
index 81083c8df1b0f8165aaedeeb56a24ea94d9949b1..f7c36a44bf6a8782a8a5ab2534678236ce21effa 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/AbstractActionTestCase.php
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/AbstractActionTestCase.php
@@ -55,7 +55,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
      */
 
     /**
-     * @see DataSet/createContentRecordAndDiscardCreatedContentRecord.csv
+     * See DataSet/createContentRecordAndDiscardCreatedContentRecord.csv
      */
     public function createContentAndDiscardCreatedContent()
     {
@@ -66,7 +66,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/createAndCopyContentRecordAndDiscardCopiedContentRecord.csv
+     * See DataSet/createAndCopyContentRecordAndDiscardCopiedContentRecord.csv
      */
     public function createAndCopyContentAndDiscardCopiedContent()
     {
@@ -79,7 +79,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/changeContentSortingNDeleteMovedRecord.csv
+     * See DataSet/changeContentSortingNDeleteMovedRecord.csv
      */
     public function changeContentSortingAndDeleteMovedRecord()
     {
@@ -88,7 +88,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/changeContentSortingNDeleteLiveRecord.csv
+     * See DataSet/changeContentSortingNDeleteLiveRecord.csv
      */
     public function changeContentSortingAndDeleteLiveRecord()
     {
@@ -105,7 +105,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
      */
 
     /**
-     * @see DataSet/deleteContentAndPage.csv
+     * See DataSet/deleteContentAndPage.csv
      */
     public function deleteContentAndPage()
     {
@@ -114,7 +114,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/copyPageFreeMode.csv
+     * See DataSet/copyPageFreeMode.csv
      */
     public function copyPageFreeMode()
     {
@@ -126,7 +126,7 @@ abstract class AbstractActionTestCase extends \TYPO3\CMS\Core\Tests\Functional\D
     }
 
     /**
-     * @see DataSet/movePageRecordToDifferentPageAndCreatePageRecordAfterMovedPageRecord.csv
+     * See DataSet/movePageRecordToDifferentPageAndCreatePageRecordAfterMovedPageRecord.csv
      * @see http://forge.typo3.org/issues/33104
      * @see http://forge.typo3.org/issues/55573
      */
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Modify/ActionTest.php b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Modify/ActionTest.php
index a019e67c7c79279e9f28cf7a7dabfd7d8b81ed59..c24f5e0b8c7d422c8e359bef43780b9e9e453598 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Modify/ActionTest.php
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Modify/ActionTest.php
@@ -33,7 +33,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/createContentRecords.csv
+     * See DataSet/createContentRecords.csv
      */
     public function createContents()
     {
@@ -47,7 +47,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/createContentRecordAndDiscardCreatedContentRecord.csv
+     * See DataSet/createContentRecordAndDiscardCreatedContentRecord.csv
      */
     public function createContentAndDiscardCreatedContent()
     {
@@ -61,7 +61,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/createAndCopyContentRecordAndDiscardCopiedContentRecord.csv
+     * See DataSet/createAndCopyContentRecordAndDiscardCopiedContentRecord.csv
      */
     public function createAndCopyContentAndDiscardCopiedContent()
     {
@@ -77,7 +77,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/modifyContentRecord.csv
+     * See DataSet/modifyContentRecord.csv
      */
     public function modifyContent()
     {
@@ -91,7 +91,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/deleteContentRecord.csv
+     * See DataSet/deleteContentRecord.csv
      */
     public function deleteContent()
     {
@@ -107,7 +107,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/deleteLocalizedContentNDeleteContent.csv
+     * See DataSet/deleteLocalizedContentNDeleteContent.csv
      */
     public function deleteLocalizedContentAndDeleteContent()
     {
@@ -121,7 +121,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/copyContentRecord.csv
+     * See DataSet/copyContentRecord.csv
      */
     public function copyContent()
     {
@@ -135,7 +135,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/copyContentToLanguage.csv
+     * See DataSet/copyContentToLanguage.csv
      */
     public function copyContentToLanguage()
     {
@@ -155,7 +155,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/copyContentToLanguageFromNonDefaultLanguage.csv
+     * See DataSet/copyContentToLanguageFromNonDefaultLanguage.csv
      */
     public function copyContentToLanguageFromNonDefaultLanguage()
     {
@@ -176,7 +176,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/localizeContentRecord.csv
+     * See DataSet/localizeContentRecord.csv
      */
     public function localizeContent()
     {
@@ -192,7 +192,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/localizeContentFromNonDefaultLanguage.csv
+     * See DataSet/localizeContentFromNonDefaultLanguage.csv
      */
     public function localizeContentFromNonDefaultLanguage()
     {
@@ -210,7 +210,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/changeContentRecordSorting.csv
+     * See DataSet/changeContentRecordSorting.csv
      */
     public function changeContentSorting()
     {
@@ -224,7 +224,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/changeContentSortingNDeleteMovedRecord.csv
+     * See DataSet/changeContentSortingNDeleteMovedRecord.csv
      */
     public function changeContentSortingAndDeleteMovedRecord()
     {
@@ -238,7 +238,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/changeContentSortingNDeleteLiveRecord.csv
+     * See DataSet/changeContentSortingNDeleteLiveRecord.csv
      */
     public function changeContentSortingAndDeleteLiveRecord()
     {
@@ -254,7 +254,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/moveContentRecordToDifferentPage.csv
+     * See DataSet/moveContentRecordToDifferentPage.csv
      */
     public function moveContentToDifferentPage()
     {
@@ -271,7 +271,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/moveContentRecordToDifferentPageAndChangeSorting.csv
+     * See DataSet/moveContentRecordToDifferentPageAndChangeSorting.csv
      */
     public function moveContentToDifferentPageAndChangeSorting()
     {
@@ -289,7 +289,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/createPageRecord.csv
+     * See DataSet/createPageRecord.csv
      */
     public function createPage()
     {
@@ -303,7 +303,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/modifyPageRecord.csv
+     * See DataSet/modifyPageRecord.csv
      */
     public function modifyPage()
     {
@@ -317,7 +317,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/deletePageRecord.csv
+     * See DataSet/deletePageRecord.csv
      */
     public function deletePage()
     {
@@ -333,7 +333,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/deleteContentAndPage.csv
+     * See DataSet/deleteContentAndPage.csv
      */
     public function deleteContentAndPage()
     {
@@ -349,7 +349,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/copyPageRecord.csv
+     * See DataSet/copyPageRecord.csv
      */
     public function copyPage()
     {
@@ -363,7 +363,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/copyPageFreeMode.csv
+     * See DataSet/copyPageFreeMode.csv
      */
     public function copyPageFreeMode()
     {
@@ -379,7 +379,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/localizePageRecord.csv
+     * See DataSet/localizePageRecord.csv
      */
     public function localizePage()
     {
@@ -393,7 +393,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/changePageRecordSorting.csv
+     * See DataSet/changePageRecordSorting.csv
      */
     public function changePageSorting()
     {
@@ -409,7 +409,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/movePageRecordToDifferentPage.csv
+     * See DataSet/movePageRecordToDifferentPage.csv
      */
     public function movePageToDifferentPage()
     {
@@ -425,7 +425,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/movePageRecordToDifferentPageAndChangeSorting.csv
+     * See DataSet/movePageRecordToDifferentPageAndChangeSorting.csv
      */
     public function movePageToDifferentPageAndChangeSorting()
     {
@@ -445,7 +445,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/movePageRecordToDifferentPageAndCreatePageRecordAfterMovedPageRecord.csv
+     * See DataSet/movePageRecordToDifferentPageAndCreatePageRecordAfterMovedPageRecord.csv
      * @see http://forge.typo3.org/issues/33104
      * @see http://forge.typo3.org/issues/55573
      */
@@ -466,7 +466,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/createContentAndCopyDraftPage.csv
+     * See DataSet/createContentAndCopyDraftPage.csv
      */
     public function createContentAndCopyDraftPage()
     {
@@ -482,7 +482,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/createContentAndCopyLivePage.csv
+     * See DataSet/createContentAndCopyLivePage.csv
      */
     public function createContentAndCopyLivePage()
     {
@@ -499,7 +499,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/createPageAndCopyDraftParentPage.csv
+     * See DataSet/createPageAndCopyDraftParentPage.csv
      */
     public function createPageAndCopyDraftParentPage()
     {
@@ -515,7 +515,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/createPageAndCopyParentPage.csv
+     * See DataSet/createPageAndCopyParentPage.csv
      */
     public function createPageAndCopyLiveParentPage()
     {
@@ -532,7 +532,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/createNestedPagesAndCopyDraftParentPage.csv
+     * See DataSet/createNestedPagesAndCopyDraftParentPage.csv
      */
     public function createNestedPagesAndCopyDraftParentPage()
     {
@@ -548,7 +548,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/createNestedPagesAndCopyParentPage.csv
+     * See DataSet/createNestedPagesAndCopyParentPage.csv
      */
     public function createNestedPagesAndCopyLiveParentPage()
     {
@@ -565,7 +565,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/deleteContentAndCopyDraftPage.csv
+     * See DataSet/deleteContentAndCopyDraftPage.csv
      */
     public function deleteContentAndCopyDraftPage()
     {
@@ -581,7 +581,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/deleteContentAndCopyLivePage.csv
+     * See DataSet/deleteContentAndCopyLivePage.csv
      */
     public function deleteContentAndCopyLivePage()
     {
@@ -598,7 +598,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/changeContentSortingAndCopyDraftPage.csv
+     * See DataSet/changeContentSortingAndCopyDraftPage.csv
      * @group not-postgres
      * @group not-mssql
      * @todo Analyze PostgreSQL issues further, which is a generic issue
@@ -617,7 +617,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/changeContentSortingAndCopyLivePage.csv
+     * See DataSet/changeContentSortingAndCopyLivePage.csv
      */
     public function changeContentSortingAndCopyLivePage()
     {
@@ -634,7 +634,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/moveContentAndCopyDraftPage.csv
+     * See DataSet/moveContentAndCopyDraftPage.csv
      */
     public function moveContentAndCopyDraftPage()
     {
@@ -652,7 +652,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/moveContentAndCopyLivePage.csv
+     * See DataSet/moveContentAndCopyLivePage.csv
      */
     public function moveContentAndCopyLivePage()
     {
@@ -673,7 +673,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/createPlaceholdersAndDeleteDraftParentPage.csv
+     * See DataSet/createPlaceholdersAndDeleteDraftParentPage.csv
      */
     public function createPlaceholdersAndDeleteDraftParentPage()
     {
@@ -683,7 +683,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/createPlaceholdersAndDeleteLiveParentPage.csv
+     * See DataSet/createPlaceholdersAndDeleteLiveParentPage.csv
      */
     public function createPlaceholdersAndDeleteLiveParentPage()
     {
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Publish/ActionTest.php b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Publish/ActionTest.php
index fe053143c1400ae295161dd78dd79716bc809043..15271ef65689e2b8506e20bb3aaa416bc4a95e03 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Publish/ActionTest.php
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Publish/ActionTest.php
@@ -32,7 +32,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/createContentRecords.csv
+     * See DataSet/createContentRecords.csv
      */
     public function createContents()
     {
@@ -51,7 +51,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/createContentRecordAndDiscardCreatedContentRecord.csv
+     * See DataSet/createContentRecordAndDiscardCreatedContentRecord.csv
      */
     public function createContentAndDiscardCreatedContent()
     {
@@ -67,7 +67,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/createAndCopyContentRecordAndDiscardCopiedContentRecord.csv
+     * See DataSet/createAndCopyContentRecordAndDiscardCopiedContentRecord.csv
      */
     public function createAndCopyContentAndDiscardCopiedContent()
     {
@@ -86,7 +86,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/modifyContentRecord.csv
+     * See DataSet/modifyContentRecord.csv
      */
     public function modifyContent()
     {
@@ -101,7 +101,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/deleteContentRecord.csv
+     * See DataSet/deleteContentRecord.csv
      */
     public function deleteContent()
     {
@@ -118,7 +118,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/deleteLocalizedContentNDeleteContent.csv
+     * See DataSet/deleteLocalizedContentNDeleteContent.csv
      */
     public function deleteLocalizedContentAndDeleteContent()
     {
@@ -137,7 +137,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/copyContentRecord.csv
+     * See DataSet/copyContentRecord.csv
      */
     public function copyContent()
     {
@@ -152,7 +152,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/copyContentToLanguage.csv
+     * See DataSet/copyContentToLanguage.csv
      */
     public function copyContentToLanguage()
     {
@@ -174,7 +174,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/copyContentToLanguageFromNonDefaultLanguage.csv
+     * See DataSet/copyContentToLanguageFromNonDefaultLanguage.csv
      */
     public function copyContentToLanguageFromNonDefaultLanguage()
     {
@@ -196,7 +196,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/localizeContentRecord.csv
+     * See DataSet/localizeContentRecord.csv
      */
     public function localizeContent()
     {
@@ -214,7 +214,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/localizeContentFromNonDefaultLanguage.csv
+     * See DataSet/localizeContentFromNonDefaultLanguage.csv
      */
     public function localizeContentFromNonDefaultLanguage()
     {
@@ -232,7 +232,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/changeContentRecordSorting.csv
+     * See DataSet/changeContentRecordSorting.csv
      */
     public function changeContentSorting()
     {
@@ -247,7 +247,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/moveContentRecordToDifferentPage.csv
+     * See DataSet/moveContentRecordToDifferentPage.csv
      */
     public function moveContentToDifferentPage()
     {
@@ -265,7 +265,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/moveContentRecordToDifferentPageAndChangeSorting.csv
+     * See DataSet/moveContentRecordToDifferentPageAndChangeSorting.csv
      */
     public function moveContentToDifferentPageAndChangeSorting()
     {
@@ -288,7 +288,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/createPageRecord.csv
+     * See DataSet/createPageRecord.csv
      */
     public function createPage()
     {
@@ -303,7 +303,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/modifyPageRecord.csv
+     * See DataSet/modifyPageRecord.csv
      */
     public function modifyPage()
     {
@@ -318,7 +318,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/deletePageRecord.csv
+     * See DataSet/deletePageRecord.csv
      */
     public function deletePage()
     {
@@ -334,7 +334,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/deleteContentAndPage.csv
+     * See DataSet/deleteContentAndPage.csv
      */
     public function deleteContentAndPage()
     {
@@ -350,7 +350,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/copyPageRecord.csv
+     * See DataSet/copyPageRecord.csv
      */
     public function copyPage()
     {
@@ -370,7 +370,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/copyPageFreeMode.csv
+     * See DataSet/copyPageFreeMode.csv
      */
     public function copyPageFreeMode()
     {
@@ -392,7 +392,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/localizePageRecord.csv
+     * See DataSet/localizePageRecord.csv
      */
     public function localizePage()
     {
@@ -407,7 +407,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/changePageRecordSorting.csv
+     * See DataSet/changePageRecordSorting.csv
      */
     public function changePageSorting()
     {
@@ -424,7 +424,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/movePageRecordToDifferentPage.csv
+     * See DataSet/movePageRecordToDifferentPage.csv
      */
     public function movePageToDifferentPage()
     {
@@ -441,7 +441,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/movePageRecordToDifferentPageAndChangeSorting.csv
+     * See DataSet/movePageRecordToDifferentPageAndChangeSorting.csv
      */
     public function movePageToDifferentPageAndChangeSorting()
     {
@@ -466,7 +466,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/movePageRecordToDifferentPageAndCreatePageRecordAfterMovedPageRecord.csv
+     * See DataSet/movePageRecordToDifferentPageAndCreatePageRecordAfterMovedPageRecord.csv
      * @see http://forge.typo3.org/issues/33104
      * @see http://forge.typo3.org/issues/55573
      */
@@ -488,7 +488,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/createPlaceholdersAndDeleteDraftParentPage.csv
+     * See DataSet/createPlaceholdersAndDeleteDraftParentPage.csv
      */
     public function createPlaceholdersAndDeleteDraftParentPage()
     {
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/PublishAll/ActionTest.php b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/PublishAll/ActionTest.php
index 30a7ff0aed067b7b406cec649ef48d029adcc1e5..a76068d00ccea7ab4b2c3afbdbe8eca9d773780c 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/PublishAll/ActionTest.php
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/PublishAll/ActionTest.php
@@ -32,7 +32,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/createContentRecords.csv
+     * See DataSet/createContentRecords.csv
      */
     public function createContents()
     {
@@ -47,7 +47,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/createContentRecordAndDiscardCreatedContentRecord.csv
+     * See DataSet/createContentRecordAndDiscardCreatedContentRecord.csv
      */
     public function createContentAndDiscardCreatedContent()
     {
@@ -62,7 +62,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/createAndCopyContentRecordAndDiscardCopiedContentRecord.csv
+     * See DataSet/createAndCopyContentRecordAndDiscardCopiedContentRecord.csv
      */
     public function createAndCopyContentAndDiscardCopiedContent()
     {
@@ -79,7 +79,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/modifyContentRecord.csv
+     * See DataSet/modifyContentRecord.csv
      */
     public function modifyContent()
     {
@@ -94,7 +94,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/deleteContentRecord.csv
+     * See DataSet/deleteContentRecord.csv
      */
     public function deleteContent()
     {
@@ -111,7 +111,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/deleteLocalizedContentNDeleteContent.csv
+     * See DataSet/deleteLocalizedContentNDeleteContent.csv
      */
     public function deleteLocalizedContentAndDeleteContent()
     {
@@ -126,7 +126,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/copyContentRecord.csv
+     * See DataSet/copyContentRecord.csv
      */
     public function copyContent()
     {
@@ -141,7 +141,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/copyContentToLanguage.csv
+     * See DataSet/copyContentToLanguage.csv
      */
     public function copyContentToLanguage()
     {
@@ -162,7 +162,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/copyContentToLanguageFromNonDefaultLanguage.csv
+     * See DataSet/copyContentToLanguageFromNonDefaultLanguage.csv
      */
     public function copyContentToLanguageFromNonDefaultLanguage()
     {
@@ -183,7 +183,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/localizeContentRecord.csv
+     * See DataSet/localizeContentRecord.csv
      */
     public function localizeContent()
     {
@@ -200,7 +200,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/localizeContentFromNonDefaultLanguage.csv
+     * See DataSet/localizeContentFromNonDefaultLanguage.csv
      */
     public function localizeContentFromNonDefaultLanguage()
     {
@@ -217,7 +217,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/changeContentRecordSorting.csv
+     * See DataSet/changeContentRecordSorting.csv
      */
     public function changeContentSorting()
     {
@@ -232,7 +232,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/moveContentRecordToDifferentPage.csv
+     * See DataSet/moveContentRecordToDifferentPage.csv
      */
     public function moveContentToDifferentPage()
     {
@@ -250,7 +250,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/moveContentRecordToDifferentPageAndChangeSorting.csv
+     * See DataSet/moveContentRecordToDifferentPageAndChangeSorting.csv
      */
     public function moveContentToDifferentPageAndChangeSorting()
     {
@@ -269,7 +269,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/createPageRecord.csv
+     * See DataSet/createPageRecord.csv
      */
     public function createPage()
     {
@@ -284,7 +284,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/modifyPageRecord.csv
+     * See DataSet/modifyPageRecord.csv
      */
     public function modifyPage()
     {
@@ -299,7 +299,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/deletePageRecord.csv
+     * See DataSet/deletePageRecord.csv
      */
     public function deletePage()
     {
@@ -315,7 +315,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/deleteContentAndPage.csv
+     * See DataSet/deleteContentAndPage.csv
      */
     public function deleteContentAndPage()
     {
@@ -331,7 +331,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/copyPageRecord.csv
+     * See DataSet/copyPageRecord.csv
      */
     public function copyPage()
     {
@@ -346,7 +346,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/copyPageFreeMode.csv
+     * See DataSet/copyPageFreeMode.csv
      */
     public function copyPageFreeMode()
     {
@@ -363,7 +363,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/localizePageRecord.csv
+     * See DataSet/localizePageRecord.csv
      */
     public function localizePage()
     {
@@ -378,7 +378,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/changePageRecordSorting.csv
+     * See DataSet/changePageRecordSorting.csv
      */
     public function changePageSorting()
     {
@@ -395,7 +395,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/movePageRecordToDifferentPage.csv
+     * See DataSet/movePageRecordToDifferentPage.csv
      */
     public function movePageToDifferentPage()
     {
@@ -412,7 +412,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/movePageRecordToDifferentPageAndChangeSorting.csv
+     * See DataSet/movePageRecordToDifferentPageAndChangeSorting.csv
      */
     public function movePageToDifferentPageAndChangeSorting()
     {
@@ -433,7 +433,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/movePageRecordToDifferentPageAndCreatePageRecordAfterMovedPageRecord.csv
+     * See DataSet/movePageRecordToDifferentPageAndCreatePageRecordAfterMovedPageRecord.csv
      * @see http://forge.typo3.org/issues/33104
      * @see http://forge.typo3.org/issues/55573
      */
@@ -451,7 +451,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/createPlaceholdersAndDeleteDraftParentPage.csv
+     * See DataSet/createPlaceholdersAndDeleteDraftParentPage.csv
      */
     public function createPlaceholdersAndDeleteDraftParentPage()
     {
@@ -462,7 +462,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Reg
 
     /**
      * @test
-     * @see DataSet/createPlaceholdersAndDeleteLiveParentPage.csv
+     * See DataSet/createPlaceholdersAndDeleteLiveParentPage.csv
      */
     public function createPlaceholdersAndDeleteLiveParentPage()
     {
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Select/Modify/ActionTest.php b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Select/Modify/ActionTest.php
index c8e6c7143169e8700602b939fa68451dd4e3bab8..284de68da5291123ea8f97a780d28c90aed299c4 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Select/Modify/ActionTest.php
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Select/Modify/ActionTest.php
@@ -30,7 +30,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/addElementRelation.csv
+     * See DataSet/addElementRelation.csv
      */
     public function addElementRelation()
     {
@@ -45,7 +45,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/deleteElementRelation.csv
+     * See DataSet/deleteElementRelation.csv
      */
     public function deleteElementRelation()
     {
@@ -63,7 +63,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/changeElementSorting.csv
+     * See DataSet/changeElementSorting.csv
      */
     public function changeElementSorting()
     {
@@ -78,7 +78,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/changeElementRelationSorting.csv
+     * See DataSet/changeElementRelationSorting.csv
      */
     public function changeElementRelationSorting()
     {
@@ -93,7 +93,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/createContentNAddRelation.csv
+     * See DataSet/createContentNAddRelation.csv
      */
     public function createContentAndAddElementRelation()
     {
@@ -110,7 +110,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/createContentNCreateRelation.csv
+     * See DataSet/createContentNCreateRelation.csv
      */
     public function createContentAndCreateElementRelation()
     {
@@ -127,7 +127,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/modifyElementOfRelation.csv
+     * See DataSet/modifyElementOfRelation.csv
      */
     public function modifyElementOfRelation()
     {
@@ -142,7 +142,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/modifyContentOfRelation.csv
+     * See DataSet/modifyContentOfRelation.csv
      */
     public function modifyContentOfRelation()
     {
@@ -156,7 +156,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/modifyBothSidesOfRelation.csv
+     * See DataSet/modifyBothSidesOfRelation.csv
      */
     public function modifyBothSidesOfRelation()
     {
@@ -173,7 +173,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/deleteContentOfRelation.csv
+     * See DataSet/deleteContentOfRelation.csv
      */
     public function deleteContentOfRelation()
     {
@@ -187,7 +187,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/deleteElementOfRelation.csv
+     * See DataSet/deleteElementOfRelation.csv
      */
     public function deleteElementOfRelation()
     {
@@ -202,7 +202,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/copyContentOfRelation.csv
+     * See DataSet/copyContentOfRelation.csv
      */
     public function copyContentOfRelation()
     {
@@ -218,7 +218,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/copyElementOfRelation.csv
+     * See DataSet/copyElementOfRelation.csv
      */
     public function copyElementOfRelation()
     {
@@ -237,7 +237,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/localizeContentOfRelation.csv
+     * See DataSet/localizeContentOfRelation.csv
      */
     public function localizeContentOfRelation()
     {
@@ -252,7 +252,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/localizeElementOfRelation.csv
+     * See DataSet/localizeElementOfRelation.csv
      */
     public function localizeElementOfRelation()
     {
@@ -269,7 +269,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/moveContentOfRelationToDifferentPage.csv
+     * See DataSet/moveContentOfRelationToDifferentPage.csv
      */
     public function moveContentOfRelationToDifferentPage()
     {
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Select/Publish/ActionTest.php b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Select/Publish/ActionTest.php
index ddb0d6a219b061c89ca0893a40a5df46f4e50894..a633c58dd0b320a3b34af94f32a26d829cc5ee7e 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Select/Publish/ActionTest.php
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Select/Publish/ActionTest.php
@@ -30,7 +30,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/addElementRelation.csv
+     * See DataSet/addElementRelation.csv
      */
     public function addElementRelation()
     {
@@ -46,7 +46,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/deleteElementRelation.csv
+     * See DataSet/deleteElementRelation.csv
      */
     public function deleteElementRelation()
     {
@@ -65,7 +65,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/changeElementSorting.csv
+     * See DataSet/changeElementSorting.csv
      */
     public function changeElementSorting()
     {
@@ -81,7 +81,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/changeElementRelationSorting.csv
+     * See DataSet/changeElementRelationSorting.csv
      */
     public function changeElementRelationSorting()
     {
@@ -97,7 +97,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/createContentNAddRelation.csv
+     * See DataSet/createContentNAddRelation.csv
      */
     public function createContentAndAddElementRelation()
     {
@@ -115,7 +115,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/createContentNCreateRelation.csv
+     * See DataSet/createContentNCreateRelation.csv
      */
     public function createContentAndCreateElementRelation()
     {
@@ -138,7 +138,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/modifyElementOfRelation.csv
+     * See DataSet/modifyElementOfRelation.csv
      */
     public function modifyElementOfRelation()
     {
@@ -154,7 +154,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/modifyContentOfRelation.csv
+     * See DataSet/modifyContentOfRelation.csv
      */
     public function modifyContentOfRelation()
     {
@@ -169,7 +169,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/modifyBothSidesOfRelation.csv
+     * See DataSet/modifyBothSidesOfRelation.csv
      */
     public function modifyBothSidesOfRelation()
     {
@@ -192,7 +192,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/deleteContentOfRelation.csv
+     * See DataSet/deleteContentOfRelation.csv
      */
     public function deleteContentOfRelation()
     {
@@ -207,7 +207,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/deleteElementOfRelation.csv
+     * See DataSet/deleteElementOfRelation.csv
      */
     public function deleteElementOfRelation()
     {
@@ -223,7 +223,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/copyContentOfRelation.csv
+     * See DataSet/copyContentOfRelation.csv
      */
     public function copyContentOfRelation()
     {
@@ -240,7 +240,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/copyElementOfRelation.csv
+     * See DataSet/copyElementOfRelation.csv
      */
     public function copyElementOfRelation()
     {
@@ -260,7 +260,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/localizeContentOfRelation.csv
+     * See DataSet/localizeContentOfRelation.csv
      */
     public function localizeContentOfRelation()
     {
@@ -276,7 +276,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/localizeElementOfRelation.csv
+     * See DataSet/localizeElementOfRelation.csv
      */
     public function localizeElementOfRelation()
     {
@@ -295,7 +295,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/moveContentOfRelationToDifferentPage.csv
+     * See DataSet/moveContentOfRelationToDifferentPage.csv
      */
     public function moveContentOfRelationToDifferentPage()
     {
diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Select/PublishAll/ActionTest.php b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Select/PublishAll/ActionTest.php
index ca8cadad0d750639d64b114e92ae830282c5d33a..cbd562927ebeb2974a4b01890d003094f504056a 100644
--- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Select/PublishAll/ActionTest.php
+++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Select/PublishAll/ActionTest.php
@@ -30,7 +30,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/addElementRelation.csv
+     * See DataSet/addElementRelation.csv
      */
     public function addElementRelation()
     {
@@ -46,7 +46,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/deleteElementRelation.csv
+     * See DataSet/deleteElementRelation.csv
      */
     public function deleteElementRelation()
     {
@@ -65,7 +65,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/changeElementSorting.csv
+     * See DataSet/changeElementSorting.csv
      */
     public function changeElementSorting()
     {
@@ -81,7 +81,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/changeElementRelationSorting.csv
+     * See DataSet/changeElementRelationSorting.csv
      */
     public function changeElementRelationSorting()
     {
@@ -97,7 +97,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/createContentNAddRelation.csv
+     * See DataSet/createContentNAddRelation.csv
      */
     public function createContentAndAddElementRelation()
     {
@@ -115,7 +115,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/createContentNCreateRelation.csv
+     * See DataSet/createContentNCreateRelation.csv
      */
     public function createContentAndCreateElementRelation()
     {
@@ -133,7 +133,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/modifyElementOfRelation.csv
+     * See DataSet/modifyElementOfRelation.csv
      */
     public function modifyElementOfRelation()
     {
@@ -149,7 +149,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/modifyContentOfRelation.csv
+     * See DataSet/modifyContentOfRelation.csv
      */
     public function modifyContentOfRelation()
     {
@@ -164,7 +164,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/modifyBothSidesOfRelation.csv
+     * See DataSet/modifyBothSidesOfRelation.csv
      */
     public function modifyBothSidesOfRelation()
     {
@@ -182,7 +182,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/deleteContentOfRelation.csv
+     * See DataSet/deleteContentOfRelation.csv
      */
     public function deleteContentOfRelation()
     {
@@ -197,7 +197,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/deleteElementOfRelation.csv
+     * See DataSet/deleteElementOfRelation.csv
      */
     public function deleteElementOfRelation()
     {
@@ -213,7 +213,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/copyContentOfRelation.csv
+     * See DataSet/copyContentOfRelation.csv
      */
     public function copyContentOfRelation()
     {
@@ -230,7 +230,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/copyElementOfRelation.csv
+     * See DataSet/copyElementOfRelation.csv
      */
     public function copyElementOfRelation()
     {
@@ -250,7 +250,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/localizeContentOfRelation.csv
+     * See DataSet/localizeContentOfRelation.csv
      */
     public function localizeContentOfRelation()
     {
@@ -266,7 +266,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/localizeElementOfRelation.csv
+     * See DataSet/localizeElementOfRelation.csv
      */
     public function localizeElementOfRelation()
     {
@@ -284,7 +284,7 @@ class ActionTest extends \TYPO3\CMS\Workspaces\Tests\Functional\DataHandling\Sel
 
     /**
      * @test
-     * @see DataSet/moveContentOfRelationToDifferentPage.csv
+     * See DataSet/moveContentOfRelationToDifferentPage.csv
      */
     public function moveContentOfRelationToDifferentPage()
     {