Apply fixes from StyleCI

This commit is contained in:
Daniil Gentili 2017-06-26 13:57:44 +00:00 committed by StyleCI Bot
parent 19f133676f
commit 8cb6100bac

View File

@ -98,14 +98,13 @@ trait AuthKeyHandler
var_dump('start');
$this->calls[$params['id']]['controller']->start();
readline();
var_dump("SENDING DAT");
$f = fopen("output.raw", 'r');
var_dump('SENDING DAT');
$f = fopen('output.raw', 'r');
while (!feof($f)) {
var_dump("SENDING 960 frames");
$this->calls[$params['id']]['controller']->writeFrames(stream_get_contents($f, 960*2));
var_dump('SENDING 960 frames');
$this->calls[$params['id']]['controller']->writeFrames(stream_get_contents($f, 960 * 2));
}
$this->handle_pending_updates();
}