Add isNotPublished() method

This commit is contained in:
Oliver Davies 2024-01-17 10:49:54 +00:00
parent 7d79a2ea14
commit c2e8d312c8

View file

@ -16,6 +16,10 @@ final class PostBuilder {
return new self();
}
public function isNotPublished(): self {
return $this;
}
public function isPublished(): self {
return $this;
}