diff options
Diffstat (limited to 'vendor/ringcentral/psr7/tests/bootstrap.php')
-rw-r--r-- | vendor/ringcentral/psr7/tests/bootstrap.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/vendor/ringcentral/psr7/tests/bootstrap.php b/vendor/ringcentral/psr7/tests/bootstrap.php new file mode 100644 index 0000000..ea6a079 --- /dev/null +++ b/vendor/ringcentral/psr7/tests/bootstrap.php @@ -0,0 +1,13 @@ +<?php +namespace RingCentral\Tests\Psr7; + +error_reporting(E_ALL); + +require __DIR__ . '/../vendor/autoload.php'; + +class HasToString +{ + public function __toString() { + return 'foo'; + } +} |