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

SomeClass.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: a6e5f4c1c6691c1267299c0f1c1778d9353344b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
class SomeClass
{
    public function doSomething($a, $b)
    {
        return;
    }

    public function doSomethingElse($c)
    {
        return;
    }
}