| Current Path : /home/rtorresani/www/vendor/rector/rector/rules/Privatization/Naming/ |
| Current File : //home/rtorresani/www/vendor/rector/rector/rules/Privatization/Naming/ConstantNaming.php |
<?php
declare (strict_types=1);
namespace Rector\Privatization\Naming;
use PhpParser\Node\Expr\Variable;
use PhpParser\Node\Stmt\PropertyProperty;
use Rector\NodeNameResolver\NodeNameResolver;
use RectorPrefix202304\Symfony\Component\String\UnicodeString;
final class ConstantNaming
{
/**
* @readonly
* @var \Rector\NodeNameResolver\NodeNameResolver
*/
private $nodeNameResolver;
public function __construct(NodeNameResolver $nodeNameResolver)
{
$this->nodeNameResolver = $nodeNameResolver;
}
public function createFromProperty(PropertyProperty $propertyProperty) : string
{
/** @var string $propertyName */
$propertyName = $this->nodeNameResolver->getName($propertyProperty);
return $this->createUnderscoreUppercaseString($propertyName);
}
public function createFromVariable(Variable $variable) : ?string
{
$variableName = $this->nodeNameResolver->getName($variable);
if ($variableName === null) {
return null;
}
return $this->createUnderscoreUppercaseString($variableName);
}
private function createUnderscoreUppercaseString(string $propertyName) : string
{
$propertyNameUnicodeString = new UnicodeString($propertyName);
return $propertyNameUnicodeString->snake()->upper()->toString();
}
}