Files
instafeed/vendor/ringcentral/psr7/tests/bootstrap.php
2022-10-23 01:39:27 +02:00

14 lines
197 B
PHP
Executable File

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