Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mock methods with static return types #1157

Merged
merged 4 commits into from Jan 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions library/Mockery/Mock.php
Expand Up @@ -747,6 +747,9 @@ public function mockery_returnValueForMethod($name)
case 'void':
return null;

case 'static':
return $this;

case 'object':
$mock = \Mockery::mock();
if ($this->_mockery_ignoreMissingRecursive) {
Expand Down
32 changes: 32 additions & 0 deletions tests/Mockery/Fixtures/MethodWithStaticReturnType.php
@@ -0,0 +1,32 @@
<?php
/**
* Mockery
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://github.com/padraic/mockery/master/LICENSE
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to padraic@php.net so we can send you a copy immediately.
*
* @category Mockery
* @package Mockery
* @subpackage UnitTests
* @copyright Copyright (c) 2010 Pádraic Brady (http://blog.astrumfutura.com)
* @license http://github.com/padraic/mockery/blob/master/LICENSE New BSD License
*/

namespace test\Mockery\Fixtures;

if (\PHP_VERSION_ID >= 80000) {
class MethodWithStaticReturnType
{
public function returnType(): static
{
return $this;
}
}
}
41 changes: 41 additions & 0 deletions tests/Mockery/MockingMethodsWithStaticReturnTypeTest.php
@@ -0,0 +1,41 @@
<?php
/**
* Mockery
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://github.com/padraic/mockery/master/LICENSE
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to padraic@php.net so we can send you a copy immediately.
*
* @category Mockery
* @package Mockery
* @subpackage UnitTests
* @copyright Copyright (c) 2010 Pádraic Brady (http://blog.astrumfutura.com)
* @license http://github.com/padraic/mockery/blob/master/LICENSE New BSD License
*/

namespace test\Mockery;

use Mockery\Adapter\Phpunit\MockeryTestCase;
use test\Mockery\Fixtures\MethodWithStaticReturnType;

class MockingMethodsWithStaticReturnTypeTest extends MockeryTestCase
{
public function testMockingStaticReturnType()
{
if (\PHP_VERSION_ID < 80000) {
$this->markTestSkipped('Requires PHP >= 8');
}

$mock = mock(MethodWithStaticReturnType::class);

$mock->shouldReceive("returnType");

$this->assertSame($mock, $mock->returnType());
}
}