smartemailing/types

View on GitHub
src/ToStringInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types = 1);

namespace SmartEmailing\Types;

interface ToStringInterface
{

    public function __toString(): string;

}