(PECL uopz 5, PECL uopz 6)
uopz_get_mock — Get the current mock for a class
uopz_get_mock ( string $class ) : mixed
Returns the current mock for class.
class
The name of the mocked class.
Either a string containing the name of the mock, or an object, or null if no mock has been set.
Example #1 uopz_get_mock() example
<?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:
mockA
© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/function.uopz-get-mock.php