Skip to content

Commit

Permalink
Apply workaround for bug in versions of PHP < 5.3.9.
Browse files Browse the repository at this point in the history
This change is needed to address a bug in older versions of PHP 5.3
affecting inheritance (see https://bugs.php.net/bug.php?id=66818).
  • Loading branch information
nrk committed Aug 8, 2014
1 parent 8775fdf commit 99f4312
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,10 @@
v1.0.1 (2014-xx-xx)
================================================================================

- __FIX__: applied a minor workaround for a bug in old versions of PHP < 5.3.9
affecting inheritance.


v1.0.0 (2014-08-01)
================================================================================

Expand Down
10 changes: 0 additions & 10 deletions src/Cluster/ClusterStrategy.php
Expand Up @@ -346,11 +346,6 @@ public function getSlot(CommandInterface $command)
return $slot;
}

/**
* {@inheritdoc}
*/
abstract public function getSlotByKey($key);

/**
* Checks if the specified array of keys will generate the same hash.
*
Expand Down Expand Up @@ -397,9 +392,4 @@ protected function extractKeyTag($key)

return $key;
}

/**
* {@inheritdoc}
*/
abstract public function getDistributor();
}

0 comments on commit 99f4312

Please sign in to comment.