uopz_get_mock

(PECL uopz 5, PECL uopz 6)

uopz_get_mockGet the current mock for a class

Descrierea

uopz_get_mock ( string $class ) : mixed

Returns the current mock for class.

Parametri

class

The name of the mocked class.

Valorile întoarse

Either a string containing the name of the mock, or an object, or null if no mock has been set.

Exemple

Example #1 uopz_get_mock() example

<?php
class {
    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);
?>

Exemplul de mai sus va afișa:

mockA

A se vedea și

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top