peakphp/framework

View on GitHub
src/Blueprint/Config/Stream.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Peak\Blueprint\Config;

interface Stream
{
    /**
     * @return array
     */
    public function get(): array;
}