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 <[email protected] > 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 99 */
1010namespace PHPUnit \TestFixture \MockObject ;
1111
12- interface Issue6174
12+ interface YetAnotherInterface
1313{
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 ();
1715}
You can’t perform that action at this time.
0 commit comments