Joli\GifExceptionBundle\EventListener\ReplaceImageListener::getRandomGif PHP Method

getRandomGif() private method

Return a random gif name for the given directory.
private getRandomGif ( string $dir ) : string
$dir string
return string
    private function getRandomGif($dir)
    {
        $imageIndex = rand(0, count($this->gifs[$dir]) - 1);
        return $this->gifs[$dir][$imageIndex];
    }