allow vendord
All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 3m3s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s
Build, Push and Deploy / deploy-staging (push) Successful in 32s
Build, Push and Deploy / deploy-production (push) Has been skipped
Build, Push and Deploy / cleanup (push) Successful in 1s
All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 3m3s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s
Build, Push and Deploy / deploy-staging (push) Successful in 32s
Build, Push and Deploy / deploy-production (push) Has been skipped
Build, Push and Deploy / cleanup (push) Successful in 1s
This commit is contained in:
102
vendor/mockery/mockery/library/Mockery/Exception/NoMatchingExpectationException.php
vendored
Normal file
102
vendor/mockery/mockery/library/Mockery/Exception/NoMatchingExpectationException.php
vendored
Normal file
@@ -0,0 +1,102 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Mockery (https://docs.mockery.io/)
|
||||
*
|
||||
* @copyright https://github.com/mockery/mockery/blob/HEAD/COPYRIGHT.md
|
||||
* @license https://github.com/mockery/mockery/blob/HEAD/LICENSE BSD 3-Clause License
|
||||
* @link https://github.com/mockery/mockery for the canonical source repository
|
||||
*/
|
||||
|
||||
namespace Mockery\Exception;
|
||||
|
||||
use Mockery\Exception;
|
||||
use Mockery\LegacyMockInterface;
|
||||
|
||||
class NoMatchingExpectationException extends Exception
|
||||
{
|
||||
/**
|
||||
* @var array<mixed>
|
||||
*/
|
||||
protected $actual = [];
|
||||
|
||||
/**
|
||||
* @var string|null
|
||||
*/
|
||||
protected $method = null;
|
||||
|
||||
/**
|
||||
* @var LegacyMockInterface|null
|
||||
*/
|
||||
protected $mockObject = null;
|
||||
|
||||
/**
|
||||
* @return array<mixed>
|
||||
*/
|
||||
public function getActualArguments()
|
||||
{
|
||||
return $this->actual;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string|null
|
||||
*/
|
||||
public function getMethodName()
|
||||
{
|
||||
return $this->method;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return LegacyMockInterface|null
|
||||
*/
|
||||
public function getMock()
|
||||
{
|
||||
return $this->mockObject;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string|null
|
||||
*/
|
||||
public function getMockName()
|
||||
{
|
||||
$mock = $this->getMock();
|
||||
|
||||
if ($mock === null) {
|
||||
return $mock;
|
||||
}
|
||||
|
||||
return $mock->mockery_getName();
|
||||
}
|
||||
|
||||
/**
|
||||
* @todo Rename param `count` to `args`
|
||||
* @template TMixed
|
||||
*
|
||||
* @param array<TMixed> $count
|
||||
* @return self
|
||||
*/
|
||||
public function setActualArguments($count)
|
||||
{
|
||||
$this->actual = $count;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $name
|
||||
* @return self
|
||||
*/
|
||||
public function setMethodName($name)
|
||||
{
|
||||
$this->method = $name;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return self
|
||||
*/
|
||||
public function setMock(LegacyMockInterface $mock)
|
||||
{
|
||||
$this->mockObject = $mock;
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user