public function __invoke() : array
 {
     $types = array_map(function (int $code) {
         return $this->factory->createFromIntCode($code)->toJSON();
     }, $this->factory->listCodes());
     return ['config' => ['feedback' => ['types' => $types]]];
 }