HEX
Server: Apache
System: Linux server2.voipitup.com.au 4.18.0-553.104.1.lve.el8.x86_64 #1 SMP Tue Feb 10 20:07:30 UTC 2026 x86_64
User: posscale (1027)
PHP: 8.2.29
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/posscale/public_html/printmanager/vendor/league/csv/src/Serializer/TypeCastingInfo.php
<?php

/**
 * League.Csv (https://csv.thephpleague.com)
 *
 * (c) Ignace Nyamagana Butera <nyamsprod@gmail.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

declare(strict_types=1);

namespace League\Csv\Serializer;

use ReflectionAttribute;
use ReflectionFunctionAbstract;
use ReflectionMethod;
use ReflectionParameter;
use ReflectionProperty;
use ValueError;

use function strtolower;
use function substr;

final class TypeCastingInfo
{
    public function __construct(
        public readonly int|string $source,
        public readonly TypeCastingTargetType $targetType,
        public readonly string $targetName,
        public readonly ?string $targetMethodName,
        public readonly ?string $targetClassName,
    ) {
    }

    public static function fromAccessor(ReflectionMethod|ReflectionProperty|ReflectionParameter $accessor): self
    {
        return match (true) {
            $accessor instanceof ReflectionMethod => self::fromMethod($accessor),
            $accessor instanceof ReflectionParameter => self::fromMethodFirstArgument($accessor),
            $accessor instanceof ReflectionProperty => self::fromProperty($accessor),
        };
    }

    public static function fromMethod(ReflectionMethod $accessor): self
    {
        $accessor = $accessor->getParameters()[0] ?? null;
        if (null === $accessor) {
            throw new ValueError('The method must contain at least one parameter in its signature.');
        }

        return self::fromMethodFirstArgument($accessor);
    }

    public static function fromMethodFirstArgument(ReflectionParameter $accessor): self
    {
        /** @var ReflectionMethod $method */
        $method = $accessor->getDeclaringFunction();
        $className = $method->getDeclaringClass()->getName();

        return new self(
            self::resolveSource($method),
            TypeCastingTargetType::MethodFirstArgument,
            $accessor->getName(),
            $method->getName(),
            $className,
        );
    }

    public static function fromProperty(ReflectionProperty $accessor): self
    {
        $attributes = $accessor->getAttributes(MapCell::class, ReflectionAttribute::IS_INSTANCEOF);
        $source = [] === $attributes ? $accessor->getName() : ($attributes[0]->newInstance()->column ?? $accessor->getName());

        $className = $accessor->getDeclaringClass()->getName();

        return new self(
            $source,
            TypeCastingTargetType::PropertyName,
            $accessor->getName(),
            null,
            $className,
        );
    }

    private static function resolveSource(ReflectionFunctionAbstract $method): int|string
    {
        $attributes = $method->getAttributes(MapCell::class, ReflectionAttribute::IS_INSTANCEOF);
        if ([] === $attributes) {
            return self::getColumnName($method);
        }

        $name = $attributes[0]->newInstance()->column;
        if (null !== $name) {
            return $name;
        }

        return self::getColumnName($method);
    }

    private static function getColumnName(ReflectionFunctionAbstract $method): string
    {
        $name = $method->getName();
        if (!str_starts_with($name, 'set')) {
            throw new ValueError('The method `'.$name.'` has no Mapping information and does not start with `set`.');
        }

        return strtolower($name[3]).substr($name, 4);
    }
}