This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--TEST-- | |
\PHPUnit\Framework\MockObject\Generator::generate('Baz', [], 'MockBaz', true, true) | |
--FILE-- | |
<?php declare(strict_types=1); | |
interface Bar extends \Throwable | |
{ | |
public function foo(): string; | |
} | |
interface Baz extends Bar |