xref
: /
plugin
/
findologicxmlexport
/
vendor
/
phpunit
/
phpunit-mock-objects
/
tests
/
_fixture
/
StringableClass.php
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
<?php
2
class
StringableClass
3
{
4
public
function
__toString
()
5
{
6
return
'12345'
;
7
}
8
}
9