From e71ea40616665be80f22955a2f41fcd112b52dd5 Mon Sep 17 00:00:00 2001 From: Alannah Kearney Date: Sat, 25 May 2019 11:57:16 +1000 Subject: [PATCH] Removed unused RequiredArgumentMissingException exception --- .../RequiredArgumentMissingException.php | 22 ------------------- 1 file changed, 22 deletions(-) delete mode 100644 src/Input/Exceptions/RequiredArgumentMissingException.php diff --git a/src/Input/Exceptions/RequiredArgumentMissingException.php b/src/Input/Exceptions/RequiredArgumentMissingException.php deleted file mode 100644 index d2f6c7a..0000000 --- a/src/Input/Exceptions/RequiredArgumentMissingException.php +++ /dev/null @@ -1,22 +0,0 @@ -argument = strtoupper($argument); - - return parent::__construct("missing argument {$this->argument}.", $code, $previous); - } - - public function getArgumentName(): string - { - return $this->argument; - } -}