This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[global] | |
daemonize = no | |
log_limit = 65536 | |
error_log = /dev/stderr | |
emergency_restart_threshold = 10 | |
emergency_restart_interval = 1m | |
log_level = warning | |
process_control_timeout = 10s |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
declare(strict_types=1); | |
class PingController extends Controller | |
{ | |
/** | |
* Check if the service is responsive. | |
*/ | |
public function index(): JsonResponse |