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

18 lines
312 B
PHP
Raw Normal View History

2022-05-20 18:39:42 +02:00
<?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;
}