diff --git a/resources/template/html/body/directive/php/component.html.twig b/resources/template/html/body/directive/php/component.html.twig
index c9e3ace..2f31079 100644
--- a/resources/template/html/body/directive/php/component.html.twig
+++ b/resources/template/html/body/directive/php/component.html.twig
@@ -1,3 +1,4 @@
+{%- if node.name.namespaceNode %}{%- set fqn = '\\' ~ node.name.namespaceNode.name ~ '\\' ~ node.name.namespaceNode.name -%}{% endif -%}
-
@@ -5,7 +6,8 @@
{{- renderNode(modifier) }}{{ ' ' -}}
{%- endfor -%}
{{ node.type }}
- {{ renderNode(node.name) }} {%- if node.type == 'enum' and node.phpType -%} : {{ node.phpType }} {% endif -%}
+ {% include "body/directive/php/partials/fullyQualifiedName.html.twig" with {'className': node.name, 'fqn': fqn} %}
+ {%- if node.type == 'enum' and node.phpType -%} : {{ node.phpType }} {% endif -%}
{% include "body/directive/php/partials/linkToSnippet.html.twig" %}
-
@@ -14,7 +16,6 @@
{% if node.name.namespaceNode %}
- Fully qualified name
-
- {% set fqn = '\\' ~ node.name.namespaceNode.name ~ '\\' ~ node.name.namespaceNode.name %}
{% include "body/directive/php/partials/codeStyle.html.twig" with {'code': fqn} %}
{% endif -%}
diff --git a/resources/template/html/body/directive/php/fullyQualifiedName.html.twig b/resources/template/html/body/directive/php/fullyQualifiedName.html.twig
deleted file mode 100644
index a42277c..0000000
--- a/resources/template/html/body/directive/php/fullyQualifiedName.html.twig
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
- {{ node.name }}
-
-
diff --git a/resources/template/html/body/directive/php/method.html.twig b/resources/template/html/body/directive/php/method.html.twig
index 1001d90..0078b25 100644
--- a/resources/template/html/body/directive/php/method.html.twig
+++ b/resources/template/html/body/directive/php/method.html.twig
@@ -3,7 +3,7 @@
{%- for modifier in node.modifiers -%}
{{- renderNode(modifier) }}{{ ' ' -}}
{%- endfor -%}
- {{- renderNode(node.methodName) -}}
+ {% include "body/directive/php/partials/method/methodName.html.twig" with {'methodName': node.methodName} %}
{% include "body/directive/php/partials/linkToSnippet.html.twig" %}
-
diff --git a/resources/template/html/body/directive/php/partials/fullyQualifiedName.html.twig b/resources/template/html/body/directive/php/partials/fullyQualifiedName.html.twig
new file mode 100644
index 0000000..e48bd6e
--- /dev/null
+++ b/resources/template/html/body/directive/php/partials/fullyQualifiedName.html.twig
@@ -0,0 +1,6 @@
+
+
+ {{- className.name -}}
+
+
diff --git a/resources/template/html/body/directive/php/methodName.html.twig b/resources/template/html/body/directive/php/partials/method/methodName.html.twig
similarity index 57%
rename from resources/template/html/body/directive/php/methodName.html.twig
rename to resources/template/html/body/directive/php/partials/method/methodName.html.twig
index 94be072..73029d0 100644
--- a/resources/template/html/body/directive/php/methodName.html.twig
+++ b/resources/template/html/body/directive/php/partials/method/methodName.html.twig
@@ -1,15 +1,15 @@
- {%- for modifier in node.modifiers -%}
+ {%- for modifier in methodName.modifiers -%}
{{- renderNode(modifier) }}{{ ' ' -}}
{%- endfor -%}
- {{ node.name }}
+ {{ methodName.name }}
(
-{% for param in node.params -%}
+{% for param in methodName.params -%}
{{ param }}
{%- if not loop.last %}, {% endif -%}
{%- endfor %}
)
-{% if node.return %}
-: {{ node.return }}
+{% if methodName.return %}
+: {{ methodName.return }}
{% endif %}
diff --git a/src/DependencyInjection/GuidesPhpDomainExtension.php b/src/DependencyInjection/GuidesPhpDomainExtension.php
index 46a9050..7f54745 100644
--- a/src/DependencyInjection/GuidesPhpDomainExtension.php
+++ b/src/DependencyInjection/GuidesPhpDomainExtension.php
@@ -44,7 +44,6 @@ public function prepend(ContainerBuilder $container): void
[
'base_template_paths' => [dirname(__DIR__, 2) . '/resources/template/html'],
'templates' => [
- template(FullyQualifiedNameNode::class, 'body/directive/php/fullyQualifiedName.html.twig'),
template(PhpCaseNode::class, 'body/directive/php/case.html.twig'),
template(PhpComponentNode::class, 'body/directive/php/component.html.twig'),
template(PhpConstNode::class, 'body/directive/php/const.html.twig'),
@@ -54,7 +53,6 @@ public function prepend(ContainerBuilder $container): void
template(PhpPropertyNode::class, 'body/directive/php/property.html.twig'),
template(PhpModifierNode::class, 'body/directive/php/modifier.html.twig'),
template(MemberNameNode::class, 'body/directive/php/memberName.html.twig'),
- template(MethodNameNode::class, 'body/directive/php/methodName.html.twig'),
],
],
);
diff --git a/tests/integration/class-abstract/expected/index.html b/tests/integration/class-abstract/expected/index.html
index 41e387d..cb5d276 100644
--- a/tests/integration/class-abstract/expected/index.html
+++ b/tests/integration/class-abstract/expected/index.html
@@ -5,16 +5,14 @@
abstract class
-
abstract class
-
- AbstractTest
-
+ AbstractTest
-
- Fully qualified name
-
- \TYPO3\CMS\Core\TYPO3\CMS\Core
+ \TYPO3\CMS\Core\TYPO3\CMS\Core
Lorem Ipsum Dolor!
diff --git a/tests/integration/class-duplicate/expected/index.html b/tests/integration/class-duplicate/expected/index.html
index 4ff3d7a..1d9ab34 100644
--- a/tests/integration/class-duplicate/expected/index.html
+++ b/tests/integration/class-duplicate/expected/index.html
@@ -5,16 +5,14 @@ final class
final class
-
- Test
-
+ Test
- Fully qualified name
-
- \TYPO3\CMS\Core\TYPO3\CMS\Core
+ \TYPO3\CMS\Core\TYPO3\CMS\Core
Lorem Ipsum Dolor!
diff --git a/tests/integration/class-final-abstract/expected/index.html b/tests/integration/class-final-abstract/expected/index.html
index e429c80..eeb1622 100644
--- a/tests/integration/class-final-abstract/expected/index.html
+++ b/tests/integration/class-final-abstract/expected/index.html
@@ -5,16 +5,14 @@ abstract final class causes warning
abstract final class
-
- Test
-
+ Test
- Fully qualified name
-
- \TYPO3\CMS\Core\TYPO3\CMS\Core
+ \TYPO3\CMS\Core\TYPO3\CMS\Core
Lorem Ipsum Dolor!
diff --git a/tests/integration/class-final/expected/index.html b/tests/integration/class-final/expected/index.html
index 4ff3d7a..1d9ab34 100644
--- a/tests/integration/class-final/expected/index.html
+++ b/tests/integration/class-final/expected/index.html
@@ -5,16 +5,14 @@ final class
final class
-
- Test
-
+ Test
- Fully qualified name
-
- \TYPO3\CMS\Core\TYPO3\CMS\Core
+ \TYPO3\CMS\Core\TYPO3\CMS\Core
Lorem Ipsum Dolor!
diff --git a/tests/integration/class-namespace-directive/expected/index.html b/tests/integration/class-namespace-directive/expected/index.html
index 349b3f5..e35fea3 100644
--- a/tests/integration/class-namespace-directive/expected/index.html
+++ b/tests/integration/class-namespace-directive/expected/index.html
@@ -5,16 +5,14 @@ PHP Class with current namespace from directive
class
-
- TestClass
-
+ TestClass
- Fully qualified name
-
- \TYPO3\CMS\Core\TYPO3\CMS\Core
+ \TYPO3\CMS\Core\TYPO3\CMS\Core
Lorem Ipsum Dolor!
@@ -25,16 +23,14 @@ PHP Class with current namespace from directive
class
-
- AnotherClass
-
+ AnotherClass
- Fully qualified name
-
- \TYPO3\CMS\Core\TYPO3\CMS\Core
+ \TYPO3\CMS\Core\TYPO3\CMS\Core
Lorem Ipsum Dolor Another!
@@ -45,16 +41,14 @@ PHP Class with current namespace from directive
class
-
- AnotherClass
-
+ AnotherClass
- Fully qualified name
-
- \MyVendor\Some\Namespace\MyVendor\Some\Namespace
+ \MyVendor\Some\Namespace\MyVendor\Some\Namespace
Lorem Ipsum Dolor Yet Another!
diff --git a/tests/integration/class-twice-noindex/expected/index.html b/tests/integration/class-twice-noindex/expected/index.html
index 1a57479..d179e15 100644
--- a/tests/integration/class-twice-noindex/expected/index.html
+++ b/tests/integration/class-twice-noindex/expected/index.html
@@ -5,16 +5,14 @@ class listed twice throws warning
class
-
- Test
-
+ Test
- Fully qualified name
-
- \TYPO3\CMS\Core\TYPO3\CMS\Core
+ \TYPO3\CMS\Core\TYPO3\CMS\Core
Lorem Ipsum Dolor!
diff --git a/tests/integration/class-twice-noindex/expected/page2.html b/tests/integration/class-twice-noindex/expected/page2.html
index cae4a38..5e0e498 100644
--- a/tests/integration/class-twice-noindex/expected/page2.html
+++ b/tests/integration/class-twice-noindex/expected/page2.html
@@ -5,15 +5,13 @@ class listed twice throws warning
class
-
- Test
-
+ Test
- Fully qualified name
-
- \TYPO3\CMS\Core\TYPO3\CMS\Core
+ \TYPO3\CMS\Core\TYPO3\CMS\Core
Lorem Ipsum Dolor!
diff --git a/tests/integration/class-twice-warning/expected/index.html b/tests/integration/class-twice-warning/expected/index.html
index 1a57479..d179e15 100644
--- a/tests/integration/class-twice-warning/expected/index.html
+++ b/tests/integration/class-twice-warning/expected/index.html
@@ -5,16 +5,14 @@ class listed twice throws warning
class
-
- Test
-
+ Test
- Fully qualified name
-
- \TYPO3\CMS\Core\TYPO3\CMS\Core
+ \TYPO3\CMS\Core\TYPO3\CMS\Core
Lorem Ipsum Dolor!
diff --git a/tests/integration/class-twice-warning/expected/page2.html b/tests/integration/class-twice-warning/expected/page2.html
index b73b3f5..32e5130 100644
--- a/tests/integration/class-twice-warning/expected/page2.html
+++ b/tests/integration/class-twice-warning/expected/page2.html
@@ -5,16 +5,14 @@ class listed twice throws warning
class
-
- Test
-
+ Test
- Fully qualified name
-
- \TYPO3\CMS\Core\TYPO3\CMS\Core
+ \TYPO3\CMS\Core\TYPO3\CMS\Core
Lorem Ipsum Dolor!
diff --git a/tests/integration/class-with-const-illegal-modifier-combinations/expected/index.html b/tests/integration/class-with-const-illegal-modifier-combinations/expected/index.html
index 5c7d8f7..c951576 100644
--- a/tests/integration/class-with-const-illegal-modifier-combinations/expected/index.html
+++ b/tests/integration/class-with-const-illegal-modifier-combinations/expected/index.html
@@ -5,16 +5,14 @@ PHP class with constants
class
-
- FunClass
-
+ FunClass
- Fully qualified name
-
- \ChuckleFactory\ChuckleFactory
+ \ChuckleFactory\ChuckleFactory
Where Fun Knows No Bounds!
diff --git a/tests/integration/class-with-const-link-warning/expected/index.html b/tests/integration/class-with-const-link-warning/expected/index.html
index 516e0f4..d3bcba1 100644
--- a/tests/integration/class-with-const-link-warning/expected/index.html
+++ b/tests/integration/class-with-const-link-warning/expected/index.html
@@ -5,16 +5,14 @@ PHP class with constants
class
-
- EnigmaticClass
-
+ EnigmaticClass
- Fully qualified name
-
- \SecretSociety\SecretSociety
+ \SecretSociety\SecretSociety
Unveiling the mysteries of constants!
diff --git a/tests/integration/class-with-const-link/expected/index.html b/tests/integration/class-with-const-link/expected/index.html
index 977607b..ea64056 100644
--- a/tests/integration/class-with-const-link/expected/index.html
+++ b/tests/integration/class-with-const-link/expected/index.html
@@ -5,16 +5,14 @@ PHP class with constants
class
-
- EnigmaticClass
-
+ EnigmaticClass
- Fully qualified name
-
- \SecretSociety\SecretSociety
+ \SecretSociety\SecretSociety
Unveiling the mysteries of constants!
diff --git a/tests/integration/class-with-const/expected/index.html b/tests/integration/class-with-const/expected/index.html
index 10368a8..21bc505 100644
--- a/tests/integration/class-with-const/expected/index.html
+++ b/tests/integration/class-with-const/expected/index.html
@@ -5,16 +5,14 @@ PHP class with constants
class
-
- EnigmaticClass
-
+ EnigmaticClass
- Fully qualified name
-
- \SecretSociety\SecretSociety
+ \SecretSociety\SecretSociety
Unveiling the mysteries of constants!
diff --git a/tests/integration/class-with-link/expected/index.html b/tests/integration/class-with-link/expected/index.html
index 369683f..1b90a65 100644
--- a/tests/integration/class-with-link/expected/index.html
+++ b/tests/integration/class-with-link/expected/index.html
@@ -5,16 +5,14 @@ PHP Class with explicit namespace
class
-
- Test
-
+ Test
- Fully qualified name
-
- \TYPO3\CMS\Core\TYPO3\CMS\Core
+ \TYPO3\CMS\Core\TYPO3\CMS\Core
Lorem Ipsum Dolor!
@@ -23,7 +21,7 @@ PHP Class with explicit namespace
setDate
(
int $year, int $month, int $day)
-
+
@@ -36,7 +34,7 @@ PHP Class with explicit namespace
(
)
: int
-
+
diff --git a/tests/integration/class-with-method-link-warning/expected/index.html b/tests/integration/class-with-method-link-warning/expected/index.html
index 21c09bd..fe82a74 100644
--- a/tests/integration/class-with-method-link-warning/expected/index.html
+++ b/tests/integration/class-with-method-link-warning/expected/index.html
@@ -5,16 +5,14 @@ PHP Class with explicit namespace
class
-
- Test
-
+ Test
- Fully qualified name
-
- \TYPO3\CMS\Core\TYPO3\CMS\Core
+ \TYPO3\CMS\Core\TYPO3\CMS\Core
Lorem Ipsum Dolor!
@@ -23,7 +21,7 @@ PHP Class with explicit namespace
setDate
(
int $year, int $month, int $day)
-
+
@@ -36,7 +34,7 @@ PHP Class with explicit namespace
(
)
: int
-
+
@@ -47,9 +45,7 @@ PHP Class with explicit namespace
class
-
- IllegalSubClass
-
+ IllegalSubClass
@@ -59,7 +55,7 @@ PHP Class with explicit namespace
(
)
: int
-
+
diff --git a/tests/integration/class-with-method-link/expected/index.html b/tests/integration/class-with-method-link/expected/index.html
index a4ebf39..c7ff6e7 100644
--- a/tests/integration/class-with-method-link/expected/index.html
+++ b/tests/integration/class-with-method-link/expected/index.html
@@ -5,16 +5,14 @@ PHP Class with explicit namespace
class
-
- Test
-
+ Test
- Fully qualified name
-
- \TYPO3\CMS\Core\TYPO3\CMS\Core
+ \TYPO3\CMS\Core\TYPO3\CMS\Core
Lorem Ipsum Dolor!
@@ -23,7 +21,7 @@ PHP Class with explicit namespace
setDate
(
int $year, int $month, int $day)
-
+
@@ -36,7 +34,7 @@ PHP Class with explicit namespace
(
)
: int
-
+
diff --git a/tests/integration/class-with-method/expected/index.html b/tests/integration/class-with-method/expected/index.html
index c5e075d..5c2af5d 100644
--- a/tests/integration/class-with-method/expected/index.html
+++ b/tests/integration/class-with-method/expected/index.html
@@ -5,16 +5,14 @@ PHP Class with explicit namespace
class
-
- Test
-
+ Test
- Fully qualified name
-
- \TYPO3\CMS\Core\TYPO3\CMS\Core
+ \TYPO3\CMS\Core\TYPO3\CMS\Core
Lorem Ipsum Dolor!
@@ -23,7 +21,7 @@ PHP Class with explicit namespace
setDate
(
int $year, int $month, int $day)
-
+
@@ -36,7 +34,7 @@ PHP Class with explicit namespace
(
)
: int
-
+
diff --git a/tests/integration/class-with-property-link/expected/index.html b/tests/integration/class-with-property-link/expected/index.html
index c7a14b4..967c6c0 100644
--- a/tests/integration/class-with-property-link/expected/index.html
+++ b/tests/integration/class-with-property-link/expected/index.html
@@ -5,9 +5,7 @@ PHP class with properties
class
-
- JollyElf
-
+ JollyElf
diff --git a/tests/integration/class-with-property-warnings/expected/index.html b/tests/integration/class-with-property-warnings/expected/index.html
index 791151e..67fd976 100644
--- a/tests/integration/class-with-property-warnings/expected/index.html
+++ b/tests/integration/class-with-property-warnings/expected/index.html
@@ -5,9 +5,7 @@ PHP class with properties that cause warnings
class
-
- GrumpyGoblin
-
+ GrumpyGoblin
diff --git a/tests/integration/class-with-property/expected/index.html b/tests/integration/class-with-property/expected/index.html
index b3c7695..8ea2eb9 100644
--- a/tests/integration/class-with-property/expected/index.html
+++ b/tests/integration/class-with-property/expected/index.html
@@ -5,9 +5,7 @@ PHP class with properties
class
-
- JollyElf
-
+ JollyElf
diff --git a/tests/integration/class-with-staticmethod/expected/index.html b/tests/integration/class-with-staticmethod/expected/index.html
index f8d4d60..8374b2d 100644
--- a/tests/integration/class-with-staticmethod/expected/index.html
+++ b/tests/integration/class-with-staticmethod/expected/index.html
@@ -5,16 +5,14 @@ PHP Class with static method
class
-
- Test
-
+ Test
- Fully qualified name
-
- \TYPO3\CMS\Core\TYPO3\CMS\Core
+ \TYPO3\CMS\Core\TYPO3\CMS\Core
Lorem Ipsum Dolor!
@@ -24,7 +22,7 @@ PHP Class with static method
(
string $whatever)
: string
-
+
diff --git a/tests/integration/class-with-typed-const/expected/index.html b/tests/integration/class-with-typed-const/expected/index.html
index 3995d7a..b205d7c 100644
--- a/tests/integration/class-with-typed-const/expected/index.html
+++ b/tests/integration/class-with-typed-const/expected/index.html
@@ -5,16 +5,14 @@ PHP class with constants
class
-
- EnigmaticClass
-
+ EnigmaticClass
- Fully qualified name
-
- \SecretSociety\SecretSociety
+ \SecretSociety\SecretSociety
Unveiling the mysteries of constants!
diff --git a/tests/integration/class-without-namespace/expected/index.html b/tests/integration/class-without-namespace/expected/index.html
index a51747c..2d1dd1c 100644
--- a/tests/integration/class-without-namespace/expected/index.html
+++ b/tests/integration/class-without-namespace/expected/index.html
@@ -5,9 +5,7 @@ PHP Class
class
-
- TestClass
-
+ TestClass
diff --git a/tests/integration/enum-backed-with-cases/expected/index.html b/tests/integration/enum-backed-with-cases/expected/index.html
index 60996f1..e528ab2 100644
--- a/tests/integration/enum-backed-with-cases/expected/index.html
+++ b/tests/integration/enum-backed-with-cases/expected/index.html
@@ -5,9 +5,7 @@ PHP Enum, backed, with cases
enum
-
- RedSuit
-
+ RedSuit
: string
diff --git a/tests/integration/enum-namespace-directive/expected/index.html b/tests/integration/enum-namespace-directive/expected/index.html
index e5b91af..c4a6e8b 100644
--- a/tests/integration/enum-namespace-directive/expected/index.html
+++ b/tests/integration/enum-namespace-directive/expected/index.html
@@ -5,16 +5,14 @@ PHP Enum with current namespace from directive
enum
-
- SomeEnum
-
+ SomeEnum
- Fully qualified name
-
- \MyVendor\MyExtension\MyVendor\MyExtension
+ \MyVendor\MyExtension\MyVendor\MyExtension
some stuff
@@ -25,16 +23,14 @@ PHP Enum with current namespace from directive
enum
-
- AnotherEnum
-
+ AnotherEnum
- Fully qualified name
-
- \MyVendor\MyExtension\MyVendor\MyExtension
+ \MyVendor\MyExtension\MyVendor\MyExtension
another stuff
diff --git a/tests/integration/enum-with-cases-link/expected/index.html b/tests/integration/enum-with-cases-link/expected/index.html
index b0e8a9f..c8b4dc5 100644
--- a/tests/integration/enum-with-cases-link/expected/index.html
+++ b/tests/integration/enum-with-cases-link/expected/index.html
@@ -5,9 +5,7 @@ PHP Enum with Const
enum
-
- Suit
-
+ Suit
diff --git a/tests/integration/enum-with-cases/expected/index.html b/tests/integration/enum-with-cases/expected/index.html
index c817ebf..591dd94 100644
--- a/tests/integration/enum-with-cases/expected/index.html
+++ b/tests/integration/enum-with-cases/expected/index.html
@@ -5,9 +5,7 @@ PHP Enum with Const
enum
-
- Suit
-
+ Suit
diff --git a/tests/integration/enum-with-constant/expected/index.html b/tests/integration/enum-with-constant/expected/index.html
index d011e48..f947bbf 100644
--- a/tests/integration/enum-with-constant/expected/index.html
+++ b/tests/integration/enum-with-constant/expected/index.html
@@ -5,16 +5,14 @@ PHP Enum with Const
enum
-
- SomeEnum
-
+ SomeEnum
- Fully qualified name
-
- \MyVendor\MyExtension\MyVendor\MyExtension
+ \MyVendor\MyExtension\MyVendor\MyExtension
some stuff
diff --git a/tests/integration/enum-with-link/expected/index.html b/tests/integration/enum-with-link/expected/index.html
index 58e21bc..c22d7f8 100644
--- a/tests/integration/enum-with-link/expected/index.html
+++ b/tests/integration/enum-with-link/expected/index.html
@@ -5,16 +5,14 @@ PHP Enum with current namespace from directive
enum
-
- SomeEnum
-
+ SomeEnum
- Fully qualified name
-
- \MyVendor\MyExtension\MyVendor\MyExtension
+ \MyVendor\MyExtension\MyVendor\MyExtension
some stuff
@@ -25,16 +23,14 @@ PHP Enum with current namespace from directive
enum
-
- AnotherEnum
-
+ AnotherEnum
- Fully qualified name
-
- \MyVendor\MyExtension\MyVendor\MyExtension
+ \MyVendor\MyExtension\MyVendor\MyExtension
another stuff
diff --git a/tests/integration/enum-with-namespace/expected/index.html b/tests/integration/enum-with-namespace/expected/index.html
index bc822f8..fc2051f 100644
--- a/tests/integration/enum-with-namespace/expected/index.html
+++ b/tests/integration/enum-with-namespace/expected/index.html
@@ -5,16 +5,14 @@ PHP Enum without namespace from directive
enum
-
- SomeEnum
-
+ SomeEnum
- Fully qualified name
-
- \MyVendor\MyExtension\MyVendor\MyExtension
+ \MyVendor\MyExtension\MyVendor\MyExtension
some stuff
@@ -25,16 +23,14 @@ PHP Enum without namespace from directive
enum
-
- AnotherEnum
-
+ AnotherEnum
- Fully qualified name
-
- \MyVendor\MyExtension\MyVendor\MyExtension
+ \MyVendor\MyExtension\MyVendor\MyExtension
another stuff
diff --git a/tests/integration/enum-with-warnings/expected/index.html b/tests/integration/enum-with-warnings/expected/index.html
index 06c1a32..9968868 100644
--- a/tests/integration/enum-with-warnings/expected/index.html
+++ b/tests/integration/enum-with-warnings/expected/index.html
@@ -5,9 +5,7 @@ PHP Enum with Warnings
enum
-
- RedSuit
-
+ RedSuit
: string
@@ -37,9 +35,7 @@ PHP Enum with Warnings
enum
-
- BlackSuit
-
+ BlackSuit
: string
diff --git a/tests/integration/enum-without-namespace/expected/index.html b/tests/integration/enum-without-namespace/expected/index.html
index c778c5d..c8635ee 100644
--- a/tests/integration/enum-without-namespace/expected/index.html
+++ b/tests/integration/enum-without-namespace/expected/index.html
@@ -5,9 +5,7 @@ PHP Enum without namespace from directive
enum
-
- SomeEnum
-
+ SomeEnum
@@ -20,9 +18,7 @@ PHP Enum without namespace from directive
enum
-
- AnotherEnum
-
+ AnotherEnum
diff --git a/tests/integration/exception-directive/expected/index.html b/tests/integration/exception-directive/expected/index.html
index 858e93b..467d692 100644
--- a/tests/integration/exception-directive/expected/index.html
+++ b/tests/integration/exception-directive/expected/index.html
@@ -5,16 +5,14 @@ PHP Exception
exception
-
- BrokenRootLineException
-
+ BrokenRootLineException
- Fully qualified name
-
- \TYPO3\CMS\Core\Exception\Page\TYPO3\CMS\Core\Exception\Page
+ \TYPO3\CMS\Core\Exception\Page\TYPO3\CMS\Core\Exception\Page
Exception for root line traversal when a page within the root line traversal
diff --git a/tests/integration/exception-with-link-deprecated/expected/index.html b/tests/integration/exception-with-link-deprecated/expected/index.html
index 35421a8..6bcd8f7 100644
--- a/tests/integration/exception-with-link-deprecated/expected/index.html
+++ b/tests/integration/exception-with-link-deprecated/expected/index.html
@@ -5,16 +5,14 @@
PHP Exception
exception
-
- BrokenRootLineException
-
+ BrokenRootLineException
- Fully qualified name
-
- \TYPO3\CMS\Core\Exception\Page\TYPO3\CMS\Core\Exception\Page
+ \TYPO3\CMS\Core\Exception\Page\TYPO3\CMS\Core\Exception\Page
Exception for root line traversal when a page within the root line traversal
diff --git a/tests/integration/exception-with-link/expected/index.html b/tests/integration/exception-with-link/expected/index.html
index 35421a8..6bcd8f7 100644
--- a/tests/integration/exception-with-link/expected/index.html
+++ b/tests/integration/exception-with-link/expected/index.html
@@ -5,16 +5,14 @@
PHP Exception
exception
-
- BrokenRootLineException
-
+ BrokenRootLineException
- Fully qualified name
-
- \TYPO3\CMS\Core\Exception\Page\TYPO3\CMS\Core\Exception\Page
+ \TYPO3\CMS\Core\Exception\Page\TYPO3\CMS\Core\Exception\Page
Exception for root line traversal when a page within the root line traversal
diff --git a/tests/integration/interface-implicit-namespace/expected/index.html b/tests/integration/interface-implicit-namespace/expected/index.html
index 822ca05..60ca811 100644
--- a/tests/integration/interface-implicit-namespace/expected/index.html
+++ b/tests/integration/interface-implicit-namespace/expected/index.html
@@ -5,16 +5,14 @@
PHP Interface with implicit namespace
interface
-
- TestInterface
-
+ TestInterface
- Fully qualified name
-
- \TYPO3\CMS\Core\TYPO3\CMS\Core
+ \TYPO3\CMS\Core\TYPO3\CMS\Core
Lorem Ipsum Dolor!
diff --git a/tests/integration/interface-link/expected/index.html b/tests/integration/interface-link/expected/index.html
index abe447f..fd86891 100644
--- a/tests/integration/interface-link/expected/index.html
+++ b/tests/integration/interface-link/expected/index.html
@@ -5,16 +5,14 @@ PHP Interface with implicit namespace
interface
-
- TestInterface
-
+ TestInterface
- Fully qualified name
-
- \TYPO3\CMS\Core\TYPO3\CMS\Core
+ \TYPO3\CMS\Core\TYPO3\CMS\Core
Lorem Ipsum Dolor!
diff --git a/tests/integration/interface-namespace-directive/expected/index.html b/tests/integration/interface-namespace-directive/expected/index.html
index da37872..55606c5 100644
--- a/tests/integration/interface-namespace-directive/expected/index.html
+++ b/tests/integration/interface-namespace-directive/expected/index.html
@@ -5,16 +5,14 @@ PHP Interface with current namespace from directive
interface
-
- TestInterface
-
+ TestInterface
- Fully qualified name
-
- \TYPO3\CMS\Core\TYPO3\CMS\Core
+ \TYPO3\CMS\Core\TYPO3\CMS\Core
Lorem Ipsum Dolor!
@@ -25,16 +23,14 @@ PHP Interface with current namespace from directive
interface
-
- AnotherInterface
-
+ AnotherInterface
- Fully qualified name
-
- \TYPO3\CMS\Core\TYPO3\CMS\Core
+ \TYPO3\CMS\Core\TYPO3\CMS\Core
Lorem Ipsum Dolor Another!
diff --git a/tests/integration/interface-with-const/expected/index.html b/tests/integration/interface-with-const/expected/index.html
index 48459c3..e221282 100644
--- a/tests/integration/interface-with-const/expected/index.html
+++ b/tests/integration/interface-with-const/expected/index.html
@@ -5,16 +5,14 @@ PHP Interface with const
interface
-
- TestInterface
-
+ TestInterface
- Fully qualified name
-
- \TYPO3\CMS\Core\TYPO3\CMS\Core
+ \TYPO3\CMS\Core\TYPO3\CMS\Core
Lorem Ipsum Dolor!
diff --git a/tests/integration/interface-with-method/expected/index.html b/tests/integration/interface-with-method/expected/index.html
index 4415273..28ccd85 100644
--- a/tests/integration/interface-with-method/expected/index.html
+++ b/tests/integration/interface-with-method/expected/index.html
@@ -5,16 +5,14 @@ PHP Interface with implicit namespace
interface
-
- TestInterface
-
+ TestInterface
- Fully qualified name
-
- \TYPO3\CMS\Core\TYPO3\CMS\Core
+ \TYPO3\CMS\Core\TYPO3\CMS\Core
Lorem Ipsum Dolor!
@@ -23,7 +21,7 @@ PHP Interface with implicit namespace
setDate
(
int $year, int $month, int $day)
-
+
@@ -36,7 +34,7 @@ PHP Interface with implicit namespace
(
)
: int
-
+
diff --git a/tests/integration/interface-without-namespace/expected/index.html b/tests/integration/interface-without-namespace/expected/index.html
index 08b8cd6..7b67970 100644
--- a/tests/integration/interface-without-namespace/expected/index.html
+++ b/tests/integration/interface-without-namespace/expected/index.html
@@ -5,9 +5,7 @@ PHP Interface
interface
-
- TestInterface
-
+ TestInterface
diff --git a/tests/integration/method-illegal-combinations/expected/index.html b/tests/integration/method-illegal-combinations/expected/index.html
index 25342c0..29f92ea 100644
--- a/tests/integration/method-illegal-combinations/expected/index.html
+++ b/tests/integration/method-illegal-combinations/expected/index.html
@@ -7,7 +7,7 @@ PHP method with allowed modifier combinations
(
string $whatever)
: string
-
+
@@ -21,7 +21,7 @@ PHP method with allowed modifier combinations
(
string $whatever)
: string
-
+
@@ -35,7 +35,7 @@ PHP method with allowed modifier combinations
(
string $whatever)
: string
-
+
@@ -49,7 +49,7 @@ PHP method with allowed modifier combinations
(
string $whatever)
: string
-
+
@@ -63,7 +63,7 @@ PHP method with allowed modifier combinations
(
string $whatever)
: string
-
+
diff --git a/tests/integration/method-legal-combinations/expected/index.html b/tests/integration/method-legal-combinations/expected/index.html
index 46daa30..d85a151 100644
--- a/tests/integration/method-legal-combinations/expected/index.html
+++ b/tests/integration/method-legal-combinations/expected/index.html
@@ -7,7 +7,7 @@ PHP method with allowed modifier combinations
(
string $whatever)
: string
-
+
@@ -21,7 +21,7 @@ PHP method with allowed modifier combinations
(
string $whatever)
: string
-
+
@@ -35,7 +35,7 @@ PHP method with allowed modifier combinations
(
string $whatever)
: string
-
+
@@ -49,7 +49,7 @@ PHP method with allowed modifier combinations
(
string $whatever)
: string
-
+
@@ -63,7 +63,7 @@ PHP method with allowed modifier combinations
(
string $whatever)
: string
-
+
@@ -77,7 +77,7 @@ PHP method with allowed modifier combinations
(
string $whatever)
: string
-
+
@@ -91,7 +91,7 @@ PHP method with allowed modifier combinations
(
string $whatever)
: string
-
+
@@ -105,7 +105,7 @@ PHP method with allowed modifier combinations
(
string $whatever)
: string
-
+
@@ -119,7 +119,7 @@ PHP method with allowed modifier combinations
(
string $whatever)
: string
-
+
@@ -133,7 +133,7 @@ PHP method with allowed modifier combinations
(
string $whatever)
: string
-
+
diff --git a/tests/integration/method-returns-fieldlist/expected/index.html b/tests/integration/method-returns-fieldlist/expected/index.html
index 1b180c7..7333270 100644
--- a/tests/integration/method-returns-fieldlist/expected/index.html
+++ b/tests/integration/method-returns-fieldlist/expected/index.html
@@ -6,7 +6,7 @@ PHP methods with return value
getDate
(
)
-
+
diff --git a/tests/integration/method-returns/expected/index.html b/tests/integration/method-returns/expected/index.html
index 32b418f..c2a6bb4 100644
--- a/tests/integration/method-returns/expected/index.html
+++ b/tests/integration/method-returns/expected/index.html
@@ -6,7 +6,7 @@ PHP methods with return value
getSomething
(
)
-
+
diff --git a/tests/integration/static-method/expected/index.html b/tests/integration/static-method/expected/index.html
index 066d997..45d48e9 100644
--- a/tests/integration/static-method/expected/index.html
+++ b/tests/integration/static-method/expected/index.html
@@ -7,7 +7,7 @@ PHP static method
(
string $whatever)
: string
-
+
diff --git a/tests/integration/trait-directive/expected/index.html b/tests/integration/trait-directive/expected/index.html
index a80026c..59e6435 100644
--- a/tests/integration/trait-directive/expected/index.html
+++ b/tests/integration/trait-directive/expected/index.html
@@ -5,16 +5,14 @@ PHP Trait
trait
-
- ContextAwareTrait
-
+ ContextAwareTrait
- Fully qualified name
-
- \TYPO3\CMS\Core\Context\TYPO3\CMS\Core\Context
+ \TYPO3\CMS\Core\Context\TYPO3\CMS\Core\Context
-
@@ -28,7 +26,7 @@
PHP Trait
setContext
(
Context $context)
-
+
-
@@ -38,7 +36,7 @@
PHP Trait
getContext
(
)
-
+
-
diff --git a/tests/integration/trait-with-link/expected/index.html b/tests/integration/trait-with-link/expected/index.html
index 35f5b6e..d5e678a 100644
--- a/tests/integration/trait-with-link/expected/index.html
+++ b/tests/integration/trait-with-link/expected/index.html
@@ -5,16 +5,14 @@
PHP Trait
-
trait
-
- ContextAwareTrait
-
+ ContextAwareTrait
-
- Fully qualified name
-
- \TYPO3\CMS\Core\Context\TYPO3\CMS\Core\Context
+ \TYPO3\CMS\Core\Context\TYPO3\CMS\Core\Context
-
@@ -28,7 +26,7 @@
PHP Trait
setContext
(
Context $context)
-
+
-
@@ -38,7 +36,7 @@
PHP Trait
getContext
(
)
-
+
-