12 lines
134 B
PHP
12 lines
134 B
PHP
<?php
|
|
|
|
namespace tests\unit\fixtures;
|
|
|
|
class Foo
|
|
{
|
|
public function __toString(): string
|
|
{
|
|
return 'to_string';
|
|
}
|
|
}
|