Skip to content

Commit

Permalink
Remove abstract method that is enforced by the interface.
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikbjorn committed Dec 23, 2013
1 parent 249558e commit 62c038a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 0 additions & 5 deletions src/Chute/Distributor/AbstractDistributor.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,6 @@
*/
abstract class AbstractDistributor implements \Chute\Distributor
{
/**
* {@inheritDoc}
*/
abstract public function run(MapReduce $mapReduce, Traversable $iterator);

/**
* Will call $mapReduce::run($iterator) for each of the chunks.
*
Expand Down
2 changes: 1 addition & 1 deletion src/Chute/MapReduce.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* make sure the least amount of memory is being used. If you have 2.000.000 elements
* per key it would be overkill to map 2.000.000 and then loop over to reduce.
*
* It also contains conveniet methods to do a single map or single reduce. Which is
* It also contains convenient methods to do a single map or single reduce. Which is
* very useful when doing it with a Distributor.
*
* @package Chute
Expand Down

0 comments on commit 62c038a

Please sign in to comment.