Browse Source

Small change to rerun travis

Joanhey 5 years ago
parent
commit
837ca2884c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      frameworks/PHP/workerman/server-async.php

+ 1 - 1
frameworks/PHP/workerman/server-async.php

@@ -45,7 +45,7 @@ $http_worker->onMessage = static function ($connection) {
             Http::header('Content-Type: text/html; charset=utf-8');
             $mysql->query('SELECT id,message FROM Fortune', 
                 static function ($command) use ($connection) {
-                    $arr    = $command->resultRows;
+                    $arr = $command->resultRows;
                     foreach ($arr as $row) {
                         $fortune[$row['id']] = htmlspecialchars($row['message'], ENT_QUOTES, 'UTF-8');
                     }