Check if array element is present before access

Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
pull/14332/head
Daniel Kesselberg 5 years ago
parent 10388eab34
commit 268c0d97bf
No known key found for this signature in database
GPG Key ID: 36E3664E099D0614

@ -30,7 +30,7 @@ class Console extends Action {
* @param $arguments
*/
public function runCommand(array $arguments) {
if ($arguments[1] === '_completion') {
if (!isset($arguments[1]) || $arguments[1] === '_completion') {
// Don't log autocompletion
return;
}

Loading…
Cancel
Save