From 3784e19a5d20d93c78338ee89891527299cbc6e6 Mon Sep 17 00:00:00 2001 From: Michel Hartmann Date: Sat, 8 Sep 2018 12:41:35 +0200 Subject: [PATCH] Removed accidentally committed file --- .../mock-objects/mock-method/foo.php | 28 ------------------- 1 file changed, 28 deletions(-) delete mode 100644 tests/end-to-end/mock-objects/mock-method/foo.php diff --git a/tests/end-to-end/mock-objects/mock-method/foo.php b/tests/end-to-end/mock-objects/mock-method/foo.php deleted file mode 100644 index 4f31f6b942e..00000000000 --- a/tests/end-to-end/mock-objects/mock-method/foo.php +++ /dev/null @@ -1,28 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -class Foo -{ - public function bar() - { - } -} - -require __DIR__ . '/../../../../vendor/autoload.php'; - -$class = new ReflectionClass('Foo'); -$mockMethod = \PHPUnit\Framework\MockObject\MockMethod::fromReflection( - $class->getMethod('bar'), - true, - true -); - -$code = $mockMethod->generateCode(); - -print $code;