File tree Expand file tree Collapse file tree 2 files changed +19
-4
lines changed Expand file tree Collapse file tree 2 files changed +19
-4
lines changed Original file line number Diff line number Diff line change
1
+ <?php declare (strict_types=1 );
2
+ /*
3
+ * This file is part of PHPUnit.
4
+ *
5
+ * (c) Sebastian Bergmann <sebastian@phpunit.de>
6
+ *
7
+ * For the full copyright and license information, please view the LICENSE
8
+ * file that was distributed with this source code.
9
+ */
10
+ namespace PHPUnit \TestFixture \MockObject ;
11
+
12
+ interface Issue6174
13
+ {
14
+ public function methodNullDefault (?string $ param , ?string $ nullDefault = null ): string ;
15
+
16
+ public function methodStringDefault (?string $ param , ?string $ stringDefault = 'something ' ): string ;
17
+ }
Original file line number Diff line number Diff line change 9
9
*/
10
10
namespace PHPUnit \TestFixture \MockObject ;
11
11
12
- interface Issue6174
12
+ interface YetAnotherInterface
13
13
{
14
- public function methodNullDefault (?string $ param , ?string $ nullDefault = null ): string ;
15
-
16
- public function methodStringDefault (?string $ param , ?string $ stringDefault = 'something ' ): string ;
14
+ public function doSomethingElseEntirely ();
17
15
}
You can’t perform that action at this time.
0 commit comments