Вход Регистрация
Файл: vendor/nesbot/carbon/src/Carbon/PHPStan/MacroScanner.php
Строк: 79
<?php

/**
 * This file is part of the Carbon package.
 *
 * (c) Brian Nesbitt <brian@nesbot.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace CarbonPHPStan;

use 
CarbonCarbonInterface;
use 
PHPStanReflectionReflectionProvider;
use 
ReflectionClass;
use 
ReflectionException;

final class 
MacroScanner
{
    
/**
     * @var PHPStanReflectionReflectionProvider
     */
    
private $reflectionProvider;

    
/**
     * MacroScanner constructor.
     *
     * @param PHPStanReflectionReflectionProvider $reflectionProvider
     */
    
public function __construct(ReflectionProvider $reflectionProvider)
    {
        
$this->reflectionProvider $reflectionProvider;
    }

    
/**
     * Return true if the given pair class-method is a Carbon macro.
     *
     * @param class-string $className
     * @param string       $methodName
     *
     * @return bool
     */
    
public function hasMethod(string $classNamestring $methodName): bool
    
{
        
$classReflection $this->reflectionProvider->getClass($className);

        if (
            
$classReflection->getName() !== CarbonInterface::class &&
            !
$classReflection->isSubclassOf(CarbonInterface::class)
        ) {
            return 
false;
        }

        return 
is_callable([$className'hasMacro']) &&
            
$className::hasMacro($methodName);
    }

    
/**
     * Return the Macro for a given pair class-method.
     *
     * @param class-string $className
     * @param string       $methodName
     *
     * @throws ReflectionException
     *
     * @return Macro
     */
    
public function getMethod(string $classNamestring $methodName): Macro
    
{
        
$reflectionClass = new ReflectionClass($className);
        
$property $reflectionClass->getProperty('globalMacros');

        
$property->setAccessible(true);
        
$macro $property->getValue()[$methodName];

        return new 
Macro(
            
$className,
            
$methodName,
            
$macro
        
);
    }
}
Онлайн: 0
Реклама