diff --git a/Splitter/BaseSplitter.php b/Splitter/BaseSplitter.php index 6343318..9fed54b 100644 --- a/Splitter/BaseSplitter.php +++ b/Splitter/BaseSplitter.php @@ -6,19 +6,17 @@ use Symfony\Component\Finder\Finder; /** - * Interface SplittersInterface. - * * @author Nick Doulgeridis */ abstract class BaseSplitter { /** - * @var string archivePath + * @var string */ private $archivePath; /** - * @var integer splitSize + * @var integer */ private $splitSize; @@ -69,7 +67,7 @@ public function getArchivePath() /** * @param string $archivePath * - * @return $this + * @return self */ public function setArchivePath($archivePath) { @@ -78,9 +76,6 @@ public function setArchivePath($archivePath) return $this; } - /** - * @void - */ abstract public function executeSplit(); /**