MOON
Server: Apache
System: Linux nserver.cafsindia.com 4.18.0-553.104.1.lve.el8.x86_64 #1 SMP Tue Feb 10 20:07:30 UTC 2026 x86_64
User: cafsindia (1002)
PHP: 8.2.30
Disabled: NONE
Upload Files
File: /home/cafsindia/help.cafsindia.com/vendor/laminas/laminas-code/src/Generator/EnumGenerator/Name.php
<?php

namespace Laminas\Code\Generator\EnumGenerator;

use function strrpos;
use function substr;

/**
 * @internal
 *
 * @psalm-immutable
 */
final class Name
{
    private string $name;

    private ?string $namespace;

    private function __construct(string $name, ?string $namespace)
    {
        $this->name      = $name;
        $this->namespace = $namespace;
    }

    public function getName(): string
    {
        return $this->name;
    }

    public function getNamespace(): ?string
    {
        return $this->namespace;
    }

    public static function fromFullyQualifiedClassName(string $name): self
    {
        $namespace  = null;
        $nsPosition = strrpos($name, '\\');
        if (false !== $nsPosition) {
            $namespace = substr($name, 0, $nsPosition);
            $name      = substr($name, $nsPosition + 1);
        }

        return new self($name, $namespace);
    }
}