2019-03-04 04:20:10 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Psalm\LaravelPlugin;
|
|
|
|
|
|
|
|
use PhpParser;
|
|
|
|
use Psalm\Context;
|
|
|
|
use Psalm\CodeLocation;
|
|
|
|
use Psalm\Type;
|
|
|
|
use Psalm\StatementsSource;
|
|
|
|
|
|
|
|
class AppInterfaceProvider implements
|
|
|
|
\Psalm\Plugin\Hook\MethodReturnTypeProviderInterface,
|
|
|
|
\Psalm\Plugin\Hook\MethodExistenceProviderInterface,
|
|
|
|
\Psalm\Plugin\Hook\MethodVisibilityProviderInterface,
|
|
|
|
\Psalm\Plugin\Hook\MethodParamsProviderInterface
|
|
|
|
{
|
|
|
|
public static function getClassLikeNames() : array
|
|
|
|
{
|
2019-03-04 17:45:36 +01:00
|
|
|
return [
|
|
|
|
\Illuminate\Contracts\Foundation\Application::class,
|
|
|
|
\Illuminate\Contracts\Container\Container::class
|
|
|
|
];
|
2019-03-04 04:20:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return ?bool
|
|
|
|
*/
|
|
|
|
public static function doesMethodExist(
|
|
|
|
string $fq_classlike_name,
|
|
|
|
string $method_name_lowercase,
|
|
|
|
StatementsSource $source = null,
|
|
|
|
CodeLocation $code_location = null
|
|
|
|
) {
|
|
|
|
if ($method_name_lowercase === 'offsetget'
|
|
|
|
|| $method_name_lowercase === 'offsetset'
|
|
|
|
) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return ?bool
|
|
|
|
*/
|
|
|
|
public static function isMethodVisible(
|
|
|
|
StatementsSource $source,
|
|
|
|
string $fq_classlike_name,
|
|
|
|
string $method_name_lowercase,
|
|
|
|
Context $context,
|
|
|
|
CodeLocation $code_location = null
|
|
|
|
) {
|
|
|
|
if ($method_name_lowercase === 'offsetget'
|
|
|
|
|| $method_name_lowercase === 'offsetset'
|
|
|
|
) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param array<PhpParser\Node\Arg> $call_args
|
|
|
|
* @return ?array<int, \Psalm\Storage\FunctionLikeParameter>
|
|
|
|
*/
|
|
|
|
public static function getMethodParams(
|
|
|
|
string $fq_classlike_name,
|
|
|
|
string $method_name_lowercase,
|
|
|
|
array $call_args = null,
|
|
|
|
StatementsSource $statements_source = null,
|
|
|
|
Context $context = null,
|
|
|
|
CodeLocation $code_location = null
|
|
|
|
) {
|
|
|
|
if ($statements_source) {
|
|
|
|
if ($method_name_lowercase === 'offsetget' || $method_name_lowercase === 'offsetset') {
|
|
|
|
return $statements_source->getCodebase()->getMethodParams(
|
|
|
|
\Illuminate\Foundation\Application::class . '::' . $method_name_lowercase
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param array<PhpParser\Node\Arg> $call_args
|
|
|
|
* @return ?Type\Union
|
|
|
|
*/
|
|
|
|
public static function getMethodReturnType(
|
|
|
|
StatementsSource $statements_source,
|
|
|
|
string $fq_classlike_name,
|
|
|
|
string $method_name_lowercase,
|
|
|
|
array $call_args,
|
|
|
|
Context $context,
|
|
|
|
CodeLocation $code_location = null
|
|
|
|
) {
|
|
|
|
if ($statements_source) {
|
|
|
|
if ($method_name_lowercase === 'offsetget' || $method_name_lowercase === 'offsetset') {
|
|
|
|
return $statements_source->getCodebase()->getMethodReturnType(
|
|
|
|
\Illuminate\Foundation\Application::class . '::' . $method_name_lowercase,
|
|
|
|
$fq_classlike_name
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|