2 declare(strict_types = 1);
59 public function exists(array $values):
bool
62 return $this->queryBuilder
71 public function resolve(array $values): ?array
74 $result = $this->queryBuilder
77 return $result !==
false ? $result :
null;
83 public function generate(array $values): ?array
86 $result = $this->queryBuilder
89 return $result !==
false ? $result :
null;
98 $modifier($this->queryBuilder, $values);