aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Pushcall.php
blob: c0b95159d174ca26730cdfe845fb917041b28153 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
namespace Zotlabs\Module;


class Pushcall extends \Zotlabs\Web\Controller {

	function init() {
		logger('pushcall: received');
	
		$xml = file_get_contents('php://input');
	
		logger('received: ' . $xml);
	
	
	
	
	killme();
	}
}