Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php declare(strict_types=1); namespace Larastan\Larastan\ReturnTypes; use Illuminate\..
Decoded Output download
<?php
declare(strict_types=1);
namespace Larastan\Larastan\ReturnTypes;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Collection;
use Illuminate\Database\Eloquent\Relations\Relation;
use Illuminate\Database\Query\Builder as QueryBuilder;
use Illuminate\Support\Str;
use Larastan\Larastan\Support\CollectionHelper;
use PhpParser\Node\Expr\MethodCall;
use PHPStan\Analyser\Scope;
use PHPStan\Reflection\MethodReflection;
use PHPStan\Reflection\ReflectionProvider;
use PHPStan\Type\ArrayType;
use PHPStan\Type\DynamicMethodReturnTypeExtension;
use PHPStan\Type\MixedType;
use PHPStan\Type\ObjectType;
use PHPStan\Type\Type;
use PHPStan\Type\TypeCombinator;
use function in_array;
/** @internal */
final class RelationFindExtension implements DynamicMethodReturnTypeExtension
{
public function __construct(private ReflectionProvider $reflectionProvider, private CollectionHelper $collectionHelper)
{
}
public function getClass(): string
{
return Relation::class;
}
public function isMethodSupported(MethodReflection $methodReflection): bool
{
if (! Str::startsWith($methodReflection->getName(), 'find')) {
return false;
}
$modelType = $methodReflection->getDeclaringClass()->getActiveTemplateTypeMap()->getType('TRelatedModel');
if (! $modelType) {
return false;
}
if ($modelType->getObjectClassNames() === []) {
return false;
}
return $methodReflection->getDeclaringClass()->hasNativeMethod($methodReflection->getName()) ||
$this->reflectionProvider->getClass(Builder::class)->hasNativeMethod($methodReflection->getName()) ||
$this->reflectionProvider->getClass(QueryBuilder::class)->hasNativeMethod($methodReflection->getName());
}
public function getTypeFromMethodCall(
MethodReflection $methodReflection,
MethodCall $methodCall,
Scope $scope,
): Type|null {
$modelType = $methodReflection->getDeclaringClass()->getActiveTemplateTypeMap()->getType('TRelatedModel');
if ($modelType === null) {
return null;
}
$modelName = $modelType->getObjectClassNames()[0];
$argType = $scope->getType($methodCall->getArgs()[0]->value);
$returnType = $methodReflection->getVariants()[0]->getReturnType();
if (in_array(Collection::class, $returnType->getReferencedClasses(), true)) {
if ($argType->isIterable()->yes()) {
return $this->collectionHelper->determineCollectionClass($modelName);
}
$returnType = TypeCombinator::remove($returnType, new ObjectType(Collection::class));
return TypeCombinator::remove($returnType, new ArrayType(new MixedType(), $modelType));
}
return $returnType;
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace Larastan\Larastan\ReturnTypes;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Collection;
use Illuminate\Database\Eloquent\Relations\Relation;
use Illuminate\Database\Query\Builder as QueryBuilder;
use Illuminate\Support\Str;
use Larastan\Larastan\Support\CollectionHelper;
use PhpParser\Node\Expr\MethodCall;
use PHPStan\Analyser\Scope;
use PHPStan\Reflection\MethodReflection;
use PHPStan\Reflection\ReflectionProvider;
use PHPStan\Type\ArrayType;
use PHPStan\Type\DynamicMethodReturnTypeExtension;
use PHPStan\Type\MixedType;
use PHPStan\Type\ObjectType;
use PHPStan\Type\Type;
use PHPStan\Type\TypeCombinator;
use function in_array;
/** @internal */
final class RelationFindExtension implements DynamicMethodReturnTypeExtension
{
public function __construct(private ReflectionProvider $reflectionProvider, private CollectionHelper $collectionHelper)
{
}
public function getClass(): string
{
return Relation::class;
}
public function isMethodSupported(MethodReflection $methodReflection): bool
{
if (! Str::startsWith($methodReflection->getName(), 'find')) {
return false;
}
$modelType = $methodReflection->getDeclaringClass()->getActiveTemplateTypeMap()->getType('TRelatedModel');
if (! $modelType) {
return false;
}
if ($modelType->getObjectClassNames() === []) {
return false;
}
return $methodReflection->getDeclaringClass()->hasNativeMethod($methodReflection->getName()) ||
$this->reflectionProvider->getClass(Builder::class)->hasNativeMethod($methodReflection->getName()) ||
$this->reflectionProvider->getClass(QueryBuilder::class)->hasNativeMethod($methodReflection->getName());
}
public function getTypeFromMethodCall(
MethodReflection $methodReflection,
MethodCall $methodCall,
Scope $scope,
): Type|null {
$modelType = $methodReflection->getDeclaringClass()->getActiveTemplateTypeMap()->getType('TRelatedModel');
if ($modelType === null) {
return null;
}
$modelName = $modelType->getObjectClassNames()[0];
$argType = $scope->getType($methodCall->getArgs()[0]->value);
$returnType = $methodReflection->getVariants()[0]->getReturnType();
if (in_array(Collection::class, $returnType->getReferencedClasses(), true)) {
if ($argType->isIterable()->yes()) {
return $this->collectionHelper->determineCollectionClass($modelName);
}
$returnType = TypeCombinator::remove($returnType, new ObjectType(Collection::class));
return TypeCombinator::remove($returnType, new ArrayType(new MixedType(), $modelType));
}
return $returnType;
}
}
Function Calls
None |
Stats
MD5 | 983bed6183270958a132df629faad4be |
Eval Count | 0 |
Decode Time | 80 ms |