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

Foo.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: 16a9ed728f3a068bbe5b9dbfdc78683238812036 (plain)
1
2
3
4
5
6
7
8
<?php
class Foo
{
    public function doSomething(Bar $bar)
    {
        return $bar->doSomethingElse();
    }
}