AbstractMacroStatic.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * This file is part of the Carbon package.
  5. *
  6. * (c) Brian Nesbitt <brian@nesbot.com>
  7. *
  8. * For the full copyright and license information, please view the LICENSE
  9. * file that was distributed with this source code.
  10. */
  11. namespace Carbon\PHPStan;
  12. use PHPStan\BetterReflection\Reflection;
  13. use ReflectionMethod;
  14. if (!class_exists(AbstractReflectionMacro::class, false)) {
  15. abstract class AbstractReflectionMacro extends AbstractMacro
  16. {
  17. /**
  18. * {@inheritdoc}
  19. */
  20. public function getReflection(): ?Reflection\Adapter\ReflectionMethod
  21. {
  22. if ($this->reflectionFunction instanceof Reflection\Adapter\ReflectionMethod) {
  23. return $this->reflectionFunction;
  24. }
  25. return $this->reflectionFunction instanceof ReflectionMethod
  26. ? new Reflection\Adapter\ReflectionMethod(
  27. Reflection\ReflectionMethod::createFromName(
  28. $this->reflectionFunction->getDeclaringClass()->getName(),
  29. $this->reflectionFunction->getName()
  30. )
  31. )
  32. : null;
  33. }
  34. }
  35. }