/**
  * {@inheritdoc}
  */
 protected function setItemErrors(array $item, array $errors)
 {
     if ($this->stepExecution) {
         $this->stepExecution->incrementSummaryInfo('skip');
         $this->stepExecution->addWarning($this->getName(), implode("\n", $this->getErrorMessages($errors)), [], $item);
     } else {
         parent::setItemErrors($item, $errors);
     }
 }