Fallback value for arg

This commit is contained in:
Alex Tselegidis 2023-09-12 16:59:48 +03:00
parent 540daa3a49
commit 072ff2862e
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ class Console extends EA_Controller {
*/
public function backup()
{
$this->instance->backup($GLOBALS['argv'][3]);
$this->instance->backup($GLOBALS['argv'][3] ?? NULL);
}
/**