You've already forked php-flasher
mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-04-05 20:42:56 +01:00
27 lines
482 B
PHP
27 lines
482 B
PHP
<?php
|
|
|
|
namespace Flasher\Prime\TestsStorage;
|
|
|
|
interface StorageInterface
|
|
{
|
|
/**
|
|
* @return \Notify\Envelope[]
|
|
*/
|
|
public function all();
|
|
|
|
/**
|
|
* @param \Notify\Envelope|\Notify\Envelope[] $envelopes
|
|
*/
|
|
public function add($envelopes);
|
|
|
|
/**
|
|
* @param \Notify\Envelope|\Notify\Envelope[] $envelopes
|
|
*/
|
|
public function remove($envelopes);
|
|
|
|
/**
|
|
* Remove all notifications from the storage
|
|
*/
|
|
public function clear();
|
|
}
|