Changeset View
Changeset View
Standalone View
Standalone View
src/console/PhutilConsoleServer.php
| <?php | <?php | ||||
| final class PhutilConsoleServer { | final class PhutilConsoleServer extends Phobject { | ||||
| private $clients = array(); | private $clients = array(); | ||||
| private $handler; | private $handler; | ||||
| private $enableLog; | private $enableLog; | ||||
| public function handleMessage(PhutilConsoleMessage $message) { | public function handleMessage(PhutilConsoleMessage $message) { | ||||
| $data = $message->getData(); | $data = $message->getData(); | ||||
| $type = $message->getType(); | $type = $message->getType(); | ||||
| ▲ Show 20 Lines • Show All 147 Lines • Show Last 20 Lines | |||||