2025-07-15 08:50:42 +00:00

14 lines
197 B
PHP

<?php
namespace RingCentral\Tests\Psr7;
error_reporting(E_ALL);
require __DIR__ . '/../vendor/autoload.php';
class HasToString
{
public function __toString() {
return 'foo';
}
}