From 9f73b61e7ea75bc8661f1c2395b9096415e65c49 Mon Sep 17 00:00:00 2001 From: Jan-Hendrik Frintrop Date: Tue, 18 Jul 2017 09:14:45 +0200 Subject: [PATCH] Fix spacing in method names Some method names were followed by spaces. --- src/wdm/debian/control/StandardFile.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/wdm/debian/control/StandardFile.php b/src/wdm/debian/control/StandardFile.php index 253642e..ea2e808 100644 --- a/src/wdm/debian/control/StandardFile.php +++ b/src/wdm/debian/control/StandardFile.php @@ -149,12 +149,12 @@ class StandardFile return $this; } - public function offsetExists ($offset) + public function offsetExists($offset) { return array_key_exists($offset, $this->_keys); } - public function offsetGet ($offset) + public function offsetGet($offset) { if ($this->offsetExists($offset)) { return $this->_keys[$offset]; @@ -163,7 +163,7 @@ class StandardFile } } - public function offsetSet ($offset, $value) + public function offsetSet($offset, $value) { if (!$this->offsetExists($offset)) { throw new \InvalidArgumentException("Invalid property '{$offset}' for this control file."); @@ -171,7 +171,7 @@ class StandardFile $this->_keys[$offset] = $value; } - public function offsetUnset ($offset) + public function offsetUnset($offset) { if ($this->offsetExists($offset)) { unset($this->_keys[$offset]);