Skip to content
Snippets Groups Projects
Commit b2e99bcc authored by Benni Mack's avatar Benni Mack Committed by Christian Kuhn
Browse files

[BUGFIX] Re-Allow Extbase Reflection for self

Due to a bug in #94001 the Extbase Reflection of
"self" did not work anymore.

Resolves: #94076
Releases: master, 10.4
Change-Id: I3658d8175661621a493ac15d19238b4f0d60eb64
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/69054


Tested-by: default avatarcore-ci <typo3@b13.com>
Tested-by: default avatarOliver Hader <oliver.hader@typo3.org>
Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Reviewed-by: default avatarOliver Hader <oliver.hader@typo3.org>
Reviewed-by: default avatarcrell <larry@garfieldtech.com>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
parent 12d38941
Branches
Tags
No related merge requests found
......@@ -388,6 +388,11 @@ class ClassSchema
if ($reflectionType->isBuiltin()) {
$this->methods[$methodName]['params'][$parameterName]['array'] = $reflectionType->getName() === 'array'; // compat
$this->methods[$methodName]['params'][$parameterName]['type'] = ltrim($reflectionType->getName(), '\\');
} elseif ($reflectionType->getName() === 'self') {
// In addition, self cannot be resolved by "new \ReflectionClass('self')",
// so treat this as a reference to the current class
$this->methods[$methodName]['params'][$parameterName]['class'] = $reflectionClass->getName();
$this->methods[$methodName]['params'][$parameterName]['type'] = ltrim($reflectionClass->getName(), '\\');
} else {
// This is mainly to confirm that the class exists. If it doesn't, a ReflectionException
// will be thrown. It's not the ideal way of doing so, but it maintains the existing API
......
......@@ -274,6 +274,31 @@ class ClassSchemaTest extends UnitTestCase
self::assertSame('string', $classSchema->getMethod('foo')->getParameter('foo')->getType());
}
/**
* @test
*/
public function classSchemaCanHandleSelfMethodReturnTypes(): void
{
$class = new class() {
public function __construct(self $copy = null)
{
}
public function injectCopy(self $copy): void
{
}
public function foo($copy): self
{
}
public function bar(self $copy): void
{
}
};
$classSchema = new ClassSchema(get_class($class));
self::assertSame(get_class($class), $classSchema->getMethod('injectCopy')->getParameter('copy')->getType());
self::assertSame(get_class($class), $classSchema->getMethod('bar')->getParameter('copy')->getType());
}
/**
* @test
*/
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment