diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-04-09 16:17:53 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-04-09 16:17:53 +0200 |
commit | 3a415e4139d6e28c16b0420ab411e6df5ff6d54a (patch) | |
tree | 21c2445fd366a9d24c1171b890e37f21608718d0 /lib/private/Color.php | |
parent | f4c09f299d989b117ebdf769632dcc6d4582791c (diff) | |
download | nextcloud-server-3a415e4139d6e28c16b0420ab411e6df5ff6d54a.tar.gz nextcloud-server-3a415e4139d6e28c16b0420ab411e6df5ff6d54a.zip |
Remove space between switch case and colon
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/private/Color.php')
-rw-r--r-- | lib/private/Color.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/private/Color.php b/lib/private/Color.php index 11f2c4ada46..6238831c41b 100644 --- a/lib/private/Color.php +++ b/lib/private/Color.php @@ -24,7 +24,9 @@ namespace OC; class Color { - public $r, $g, $b; + public $r; + public $g; + public $b; public function __construct($r, $g, $b) { $this->r = $r; $this->g = $g; |