Skip to content
This repository has been archived by the owner on Feb 20, 2024. It is now read-only.

Commit

Permalink
Docblock cleanup (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
jongotlin authored and Nyholm committed Dec 14, 2016
1 parent 8646492 commit 1b1dbe9
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions Splitter/BaseSplitter.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down Expand Up @@ -69,7 +67,7 @@ public function getArchivePath()
/**
* @param string $archivePath
*
* @return $this
* @return self
*/
public function setArchivePath($archivePath)
{
Expand All @@ -78,9 +76,6 @@ public function setArchivePath($archivePath)
return $this;
}

/**
* @void
*/
abstract public function executeSplit();

/**
Expand Down

0 comments on commit 1b1dbe9

Please sign in to comment.