Fix wait-for-connection script comment

This commit is contained in:
nupplaPhil 2020-02-02 22:27:05 +01:00
parent b1bfafe1f5
commit 11be31d601
No known key found for this signature in database
GPG Key ID: D8365C3D36B77D90
1 changed files with 8 additions and 5 deletions

View File

@ -1,11 +1,14 @@
#!/usr/bin/php
#
# This script tries to connect to a database for a given interval
# Useful in case of installation e.g. to wait for the database to not generate unnecessary errors
#
# Usage: php bin/wait-for-connection {HOST} {PORT} [{TIMEOUT}]
<?php
/**
* This script tries to connect to a database for a given interval
* Useful in case of installation e.g. to wait for the database to not generate unnecessary errors
*
* Usage: php bin/wait-for-connection {HOST} {PORT} [{TIMEOUT}]
*/
$timeout = 60;
switch ($argc) {
case 4: