Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save davedevelopment/4475927 to your computer and use it in GitHub Desktop.
Save davedevelopment/4475927 to your computer and use it in GitHub Desktop.
RussianDependencyRoulettePimple
<?php
class RussianDependencyRoulettePimple extends Pimple
{
public function offsetGet($id)
{
return parent::offsetGet(reset(shuffle($this->keys())));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment