mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-17 21:38:22 +01:00
1d28ca109c
5ec4cff203
[Php56] Handle jump not Expression stmt next initialized on AddDefaultValueForUndefinedVariableRector (#2725)
47 lines
1.3 KiB
PHP
47 lines
1.3 KiB
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace Rector\CodingStyle\Naming;
|
|
|
|
use RectorPrefix202208\Nette\Utils\Strings;
|
|
use PhpParser\Node\Identifier;
|
|
use PhpParser\Node\Name;
|
|
use PhpParser\Node\Stmt\ClassLike;
|
|
final class ClassNaming
|
|
{
|
|
/**
|
|
* @param string|\PhpParser\Node\Name|\PhpParser\Node\Identifier $name
|
|
*/
|
|
public function getVariableName($name) : string
|
|
{
|
|
$shortName = $this->getShortName($name);
|
|
return \lcfirst($shortName);
|
|
}
|
|
/**
|
|
* @param string|\PhpParser\Node\Name|\PhpParser\Node\Identifier|\PhpParser\Node\Stmt\ClassLike $name
|
|
*/
|
|
public function getShortName($name) : string
|
|
{
|
|
if ($name instanceof ClassLike) {
|
|
if ($name->name === null) {
|
|
return '';
|
|
}
|
|
return $this->getShortName($name->name);
|
|
}
|
|
if ($name instanceof Name || $name instanceof Identifier) {
|
|
$name = $name->toString();
|
|
}
|
|
$name = \trim($name, '\\');
|
|
$shortName = Strings::after($name, '\\', -1);
|
|
if (\is_string($shortName)) {
|
|
return $shortName;
|
|
}
|
|
return $name;
|
|
}
|
|
public function getNamespace(string $fullyQualifiedName) : ?string
|
|
{
|
|
$fullyQualifiedName = \trim($fullyQualifiedName, '\\');
|
|
return Strings::before($fullyQualifiedName, '\\', -1);
|
|
}
|
|
}
|