コード例 #1
0
ファイル: Sonar.php プロジェクト: stanislav-web/PhalconSonar
 /**
  * Open task event
  *
  * @param ConnectionInterface $conn
  */
 public function onOpen(ConnectionInterface $conn)
 {
     // store the new connection
     $this->clients->attach($conn);
     echo Messenger::open($this->getIpAddress($conn));
     // start profiler
     if (defined('SONAR_VERBOSE') === true) {
         Profiler::start();
     }
 }
コード例 #2
0
 /**
  * Greeting message test
  */
 public function testOpen()
 {
     $this->assertInternalType('string', Messenger::open('test'));
 }