wol-soft/php-json-schema-model-generator

View on GitHub
src/PropertyProcessor/Decorator/TypeHint/ClearTypeHintDecorator.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
<?php

declare(strict_types = 1);

namespace PHPModelGenerator\PropertyProcessor\Decorator\TypeHint;

/**
 * Class ClearTypeHintDecorator
 *
 * @package PHPModelGenerator\PropertyProcessor\Decorator\Property
 */
class ClearTypeHintDecorator implements TypeHintDecoratorInterface
{
    /**
     * @inheritdoc
     */
    public function decorate(string $input, bool $outputType = false): string
    {
        return '';
    }
}