Uopz Funktionen
PHP Manual

uopz_get_mock

(PECL uopz 5)

uopz_get_mockGet the current mock for a class

Beschreibung

mixed uopz_get_mock ( string $class )

Returns the current mock for class.

Parameter-Liste

class

The name of the mocked class.

Rückgabewerte

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

Beispiele

Beispiel #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);
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

mockA

Siehe auch


Uopz Funktionen
PHP Manual