W3cubDocs

/PHP

uopz_unset_mock

(PECL uopz 5, PECL uopz 6)

uopz_unset_mockUnset previously set mock

Description

uopz_unset_mock ( string $class ) : void

Unsets the previously set mock for class.

Parameters

class

The name of the mocked class.

Errors/Exceptions

A RuntimeException is thrown, if no mock was previously set for class.

Examples

Example #1 uopz_unset_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);
uopz_unset_mock(A::class);
A::who();
?>

The above example will output:

A

See Also

© 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-unset-mock.php