13 lines
171 B
PHP
13 lines
171 B
PHP
<?php
|
|
|
|
namespace Ulmus\Attribute\Property\Relation;
|
|
|
|
#[\Attribute]
|
|
class Ignore {
|
|
|
|
public function __construct(
|
|
public bool $ignoreExport = false,
|
|
) {}
|
|
|
|
}
|