norse-blue/php-scalar-objects

View on GitHub
src/Extensions/String/StringPadRightExtension.php

Summary

Maintainability
A
2 hrs
Test Coverage
<?php

declare(strict_types=1);

namespace NorseBlue\ScalarObjects\Extensions\String;

use NorseBlue\ExtensibleObjects\Contracts\ExtensionMethod;
use NorseBlue\ScalarObjects\Types\IntType;
use NorseBlue\ScalarObjects\Types\StringType;

final class StringPadRightExtension extends StringType implements ExtensionMethod
{
    /**
     * @return callable(int|IntType $pad_length, string|StringType $pad_string = '0'): StringType
     */
    public function __invoke(): callable
    {
        /**
         * Get a right padded string using the numeric value
         *
         * @param int|IntType $pad_length
         * @param string|StringType $pad_string
         */
        return function ($pad_length, $pad_string = ' '): StringType {
            return $this->pad($pad_length, $pad_string, STR_PAD_RIGHT);
        };
    }
}