Some light refactoring. No changes.

This commit is contained in:
James Cole
2018-01-25 18:41:27 +01:00
parent 53fc4f2740
commit 7c70732247
28 changed files with 76 additions and 133 deletions

View File

@@ -122,9 +122,9 @@ class CsvProcessor implements FileProcessorInterface
}
/**
* @codeCoverageIgnore
* Shorthand method
* Shorthand method to set the extended status.
*
* @codeCoverageIgnore
* @param array $array
*/
public function setExtendedStatus(array $array)
@@ -149,7 +149,9 @@ class CsvProcessor implements FileProcessorInterface
}
/**
* Shorthand method.
* Shorthand method to add a step.
*
* @codeCoverageIgnore
*/
private function addStep()
{
@@ -187,9 +189,9 @@ class CsvProcessor implements FileProcessorInterface
}
/**
* @codeCoverageIgnore
* Shorthand method.
* Shorthand method to return configuration.
*
* @codeCoverageIgnore
* @return array
*/
private function getConfig(): array
@@ -197,18 +199,6 @@ class CsvProcessor implements FileProcessorInterface
return $this->repository->getConfiguration($this->job);
}
/**
* @codeCoverageIgnore
* Shorthand method.
*
* @return array
*/
private function getExtendedStatus(): array
{
return $this->repository->getExtendedStatus($this->job);
}
/**
* @return Iterator
*