WPCF7_Pipes::merge()publicCF7 1.0

Метод класса: WPCF7_Pipes{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$WPCF7_Pipes = new WPCF7_Pipes();
$WPCF7_Pipes->merge( $another );
$another(self) (обязательный)
-

Код WPCF7_Pipes::merge() CF7 6.0.2

public function merge( self $another ) {
	$this->pipes = array_merge( $this->pipes, $another->pipes );
}