Beispiel #1
0
 public static function get($unset = true)
 {
     $instance = self::$controlNextNewMock;
     if ($instance !== null && $unset === true) {
         self::$controlNextNewMock = null;
     }
     return $instance;
 }
Beispiel #2
0
 public static function get()
 {
     $instance = self::$controlNextNewMock;
     if ($instance !== null) {
         self::$controlNextNewMock = null;
     }
     return $instance;
 }