SomeClass.php in Zircon Profile 8.0
Same filename in this branch
Same filename and directory in other branches
File
vendor/phpunit/phpunit-mock-objects/tests/_fixture/SomeClass.phpView source
<?php
class SomeClass {
public function doSomething($a, $b) {
return null;
}
public function doSomethingElse($c) {
return null;
}
}