コード例 #1
0
ファイル: controller.php プロジェクト: xihewang/atoum
 public static function setLinker(controller\linker $linker = null)
 {
     self::$linker = $linker ?: new controller\linker();
 }
コード例 #2
0
ファイル: controller.php プロジェクト: ronan-gloo/atoum
 public static function get()
 {
     $instance = self::$controlNextNewMock;
     if ($instance !== null) {
         self::$controlNextNewMock = null;
     }
     return $instance;
 }