diff --git a/src/Option/CountOption.php~ b/src/Option/CountOption.php~ deleted file mode 100644 index eabb989..0000000 --- a/src/Option/CountOption.php~ +++ /dev/null @@ -1,27 +0,0 @@ -count++; - } - - public function getValue() : null|int - { - return $this->count ?: null; - } - - public function setValue(mixed $value) : void - { - if ( ! is_int($value) ) { - throw new \RuntimeException("A value was given to an option (%s) which is countable"); - } - - $this->count = $value; - } -} \ No newline at end of file diff --git a/src/Option/KeyValueOption.php~ b/src/Option/KeyValueOption.php~ deleted file mode 100644 index ede9862..0000000 --- a/src/Option/KeyValueOption.php~ +++ /dev/null @@ -1,25 +0,0 @@ -values[$key] = $value; - } - - public function setRawValue(string $value) : void - { - list($key, $value) = explode('=', trim($value), 2); - - $this->setValue($key, $value); - } - - public function getValue() : null|array - { - return $this->values ?: null; - } -} \ No newline at end of file