rector/packages/PhpAttribute/AnnotationToAttributeMapper/StringAnnotationToAttributeMapper.php
2022-06-07 08:22:29 +00:00

51 lines
1.5 KiB
PHP

<?php
declare (strict_types=1);
namespace Rector\PhpAttribute\AnnotationToAttributeMapper;
use PhpParser\Node\Expr;
use PhpParser\Node\Expr\ConstFetch;
use PhpParser\Node\Name;
use PhpParser\Node\Scalar\LNumber;
use PhpParser\Node\Scalar\String_;
use Rector\NodeTypeResolver\Node\AttributeKey;
use Rector\PhpAttribute\Contract\AnnotationToAttributeMapperInterface;
/**
* @implements AnnotationToAttributeMapperInterface<string>
*/
final class StringAnnotationToAttributeMapper implements AnnotationToAttributeMapperInterface
{
/**
* @param mixed $value
*/
public function isCandidate($value) : bool
{
return \is_string($value);
}
/**
* @param string $value
*/
public function map($value) : Expr
{
if (\strtolower($value) === 'true') {
return new ConstFetch(new Name('true'));
}
if (\strtolower($value) === 'false') {
return new ConstFetch(new Name('false'));
}
if (\strtolower($value) === 'null') {
return new ConstFetch(new Name('null'));
}
// number as string to number
if (\is_numeric($value) && \strlen((string) (int) $value) === \strlen($value)) {
return LNumber::fromString($value);
}
if (\strpos($value, "'") !== \false && \strpos($value, "\n") === \false) {
$kind = String_::KIND_DOUBLE_QUOTED;
} else {
$kind = String_::KIND_SINGLE_QUOTED;
}
return new String_($value, [AttributeKey::KIND => $kind]);
}
}