transformer/tests/unit/fixtures/Foo.php

12 lines
134 B
PHP

<?php
namespace tests\unit\fixtures;
class Foo
{
public function __toString(): string
{
return 'to_string';
}
}