cozyphp/contracts

View on GitHub
src/Stringable.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/**
 * Cozy Contracts
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Cozy\Contracts;

interface Stringable
{
    /**
     * Convert the current instance to its string representation.
     */
    public function __toString(): string;
}