16 lines
284 B
PHP
16 lines
284 B
PHP
<?php
|
|
|
|
namespace Ulmus\Annotation\Property;
|
|
|
|
class WithJoin implements \Notes\Annotation {
|
|
|
|
protected array $joins;
|
|
|
|
public function __construct(/*Stringable|array|null*/ $joins = null)
|
|
{
|
|
if ( $joins ) {
|
|
$this->joins = (array)$joins;
|
|
}
|
|
}
|
|
}
|