Welcome to mirror list, hosted at ThFree Co, Russian Federation.

StringableClass.php « _fixture « tests « phpunit-mock-objects « phpunit « vendor - github.com/CarnetApp/CarnetNextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0b6d62d61d15faf64efdfd03e5656bbec39cde8f (plain)
1
2
3
4
5
6
7
8
<?php
class StringableClass
{
    public function __toString()
    {
        return '12345';
    }
}