14 lines
330 B
PHP
14 lines
330 B
PHP
<?php
|
|
|
|
namespace Rinsvent\DTO2Data\Transformer;
|
|
|
|
#[\Attribute(\Attribute::TARGET_ALL|\Attribute::IS_REPEATABLE)]
|
|
class Trim extends Meta
|
|
{
|
|
public function __construct(
|
|
public array $tags = ['default'],
|
|
public string $characters = " \t\n\r\0\x0B"
|
|
) {
|
|
parent::__construct(...func_get_args());
|
|
}
|
|
} |