peakphp/framework

View on GitHub
src/Blueprint/Common/ResourceLoader.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Peak\Blueprint\Common;

interface ResourceLoader
{
    /**
     * @param mixed $resource
     * @return mixed
     */
    public function load($resource);
}