phplrt/phplrt

View on GitHub
libs/source/src/Readable.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Phplrt\Source;

use Phplrt\Contracts\Source\ReadableInterface;

abstract class Readable implements ReadableInterface
{
    use SourceFactoryTrait;
}