You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class BulkImportJobExistsConstraint extendsAbstractConstraint
30
+
class BulkImportJobExistsConstraint extendsBooleanConstraint
31
31
{
32
-
/** @var bool|null The value of our constraint */
33
-
protected ?bool$value = null;
34
32
35
33
publicfunction__construct()
36
34
{
37
35
parent::__construct('bulk_import_job_exists');
38
36
}
39
37
40
-
/**
41
-
* Gets the value of this constraint. Null means "don't filter", true means "filter for parts in bulk import jobs", false means "filter for parts not in bulk import jobs".
42
-
*/
43
-
publicfunctiongetValue(): ?bool
44
-
{
45
-
return$this->value;
46
-
}
47
-
48
-
/**
49
-
* Sets the value of this constraint. Null means "don't filter", true means "filter for parts in bulk import jobs", false means "filter for parts not in bulk import jobs".
0 commit comments