aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Color.php
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-09 16:17:53 +0200
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-09 16:17:53 +0200
commit3a415e4139d6e28c16b0420ab411e6df5ff6d54a (patch)
tree21c2445fd366a9d24c1171b890e37f21608718d0 /lib/private/Color.php
parentf4c09f299d989b117ebdf769632dcc6d4582791c (diff)
downloadnextcloud-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.php4
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;