factory = $factory; $this->resolver = $resolver; $this->repositoryQuery = $repositoryQuery; $this->store = $store; } public static function getEntityFqcn() { return Opening::class; } public function getFactory(): OpeningFactory { return $this->factory; } public function getResolver(): OpeningResolver { return $this->resolver; } public function getRepositoryQuery(): OpeningRepositoryQuery { return $this->repositoryQuery; } public function getStore(): OpeningStore { $this->store->resetContext(); return $this->store; } }