miquido/observable

View on GitHub
src/ObserverInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Miquido\Observable;

interface ObserverInterface
{
    public function next($data): void;

    public function complete(): void;
}