11 lines
202 B
PHP
11 lines
202 B
PHP
<?php
|
|
|
|
namespace Ulmus\Attribute\Property;
|
|
|
|
#[\Attribute(\Attribute::TARGET_PROPERTY | \Attribute::IS_REPEATABLE)]
|
|
class WithJoin {
|
|
public function __construct(
|
|
array $joins = []
|
|
) {}
|
|
}
|