*/ class PostFactory implements FactoryInterface { public function create(): Post { $entity = new Post(); $entity ->setStatus(0) ; return $entity; } }