Skip to content

Commit 80cfe34

Browse files
committed
Missing NS sep (ref #1562)
1 parent f1f6c2a commit 80cfe34

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Config.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -738,7 +738,7 @@ public function processLongArgument($arg, $pos)
738738

739739
try {
740740
$this->setConfigData($key, $value);
741-
} catch (Exception $e) {
741+
} catch (\Exception $e) {
742742
throw new DeepExitException($e->getMessage().PHP_EOL, 3);
743743
}
744744

@@ -762,7 +762,7 @@ public function processLongArgument($arg, $pos)
762762
} else {
763763
try {
764764
$this->setConfigData($key, null);
765-
} catch (Exception $e) {
765+
} catch (\Exception $e) {
766766
throw new DeepExitException($e->getMessage().PHP_EOL, 3);
767767
}
768768

0 commit comments

Comments
 (0)