AB
AB copied to clipboard
AB test generator library
I need a way to set the variation manually. Here is my original code: ```php class SplitTestService { const COOKIE_NAME = 'ab_seed'; protected $container; public function __construct() { $this->container =...
Hi all, is there a way to retrieve variation id for a test? $test = new Test('homepage_color', array( 'white' => 1, 'black' => 1, 'yellow' => 1, )); $test->getVariation(); //...
Hi, test work well, but when i add seed to container it use only 2 type of variation, all first on last test choices, hereby the code: ``` if (!$session->get('seed'))...