/**
  * @return string
  */
 public function save()
 {
     $satisConfig = $this->serializer->serialize($this->satis, 'json');
     $this->configPersister->updateWith($satisConfig);
     if ($this->disableBuild === false) {
         return $this->configBuilder->build();
     }
     return true;
 }