mirror of
https://github.com/Icinga/icinga-php-thirdparty.git
synced 2025-08-23 02:28:15 +02:00
14 lines
197 B
PHP
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';
|
|
}
|
|
}
|