for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Hhxsv5\LaravelS\Swoole\Process;
trait ProcessTitleTrait
{
public function setProcessTitle($title)
if (PHP_OS === 'Darwin') {
return;
}
if (function_exists('cli_set_process_title')) {
cli_set_process_title($title);
} elseif (function_exists('swoole_set_process_name')) {
swoole_set_process_name($title);