Files
shlink/module/Core/src/Model/BulkDeleteResult.php
2023-05-14 12:00:08 +02:00

18 lines
305 B
PHP

<?php
declare(strict_types=1);
namespace Shlinkio\Shlink\Core\Model;
final class BulkDeleteResult
{
public function __construct(public readonly int $affectedItems)
{
}
public function toArray(string $fieldName): array
{
return [$fieldName => $this->affectedItems];
}
}