summaryrefslogtreecommitdiffstats
path: root/vendor/ringcentral/psr7/tests/bootstrap.php
blob: ea6a07914ca3585c9e34e39aa56117d28c07d876 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
namespace RingCentral\Tests\Psr7;

error_reporting(E_ALL);

require __DIR__ . '/../vendor/autoload.php';

class HasToString
{
    public function __toString() {
        return 'foo';
    }
}