Dave M b33c67b594 - WIP on locale formatting since strftime is deprecated
- Added Limit and Offset attributes in RelationBuilder
2025-07-14 16:54:45 +00:00

11 lines
173 B
PHP

<?php
namespace Ulmus\Attribute\Property;
#[\Attribute(\Attribute::TARGET_PROPERTY)]
class Offset {
public function __construct(
public int $value,
) {}
}