uopz_get_mock
PHP function
Edit on GitHub ✎
(PECL uopz 5, PECL uopz 6, PECL uopz 7)
Get the current mock for a class
Description
uopz_get_mock(string $class): mixed
Returns the current mock for class.
Parameters
classThe name of the mocked class.
Return Values
Either a string containing the name of the mock, or an object, or null if no mock has been set.
Examples
uopz_get_mock() example
php
<?php
class A {
public static function who() {
echo "A";
}
}
class mockA {
public static function who() {
echo "mockA";
}
}
uopz_set_mock(A::class, mockA::class);
echo uopz_get_mock(A::class);
?>The above example will output:
output
mockA