murph-core/src/core/Ab/AbContainerInterface.php

18 lines
312 B
PHP

<?php
namespace App\Core\Ab;
/**
* interface AbContainerInterface.
*
* @author Simon Vieille <simon@deblan.fr>
*/
interface AbContainerInterface
{
public function add(AbTestInterface $test): self;
public function has(string $name): bool;
public function get(string $name): AbTestInterface;
}