mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-27 16:08:55 +02:00
12 lines
171 B
PHP
12 lines
171 B
PHP
<?php
|
|
namespace GuzzleHttp\Tests\Psr7;
|
|
|
|
require __DIR__ . '/../vendor/autoload.php';
|
|
|
|
class HasToString
|
|
{
|
|
public function __toString() {
|
|
return 'foo';
|
|
}
|
|
}
|