From 1517b1452e1c17af473a403da59cc308940dff1d Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Thu, 12 Apr 2018 16:24:44 +0200 Subject: Fix autoloader Signed-off-by: Morris Jobke --- lib/private/Color.php | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 lib/private/Color.php (limited to 'lib/private/Color.php') diff --git a/lib/private/Color.php b/lib/private/Color.php new file mode 100644 index 00000000000..78e8d49a401 --- /dev/null +++ b/lib/private/Color.php @@ -0,0 +1,33 @@ + + * + * @author John Molakvoæ + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + * + */ + +namespace OC; + +class Color { + public $r, $g, $b; + public function __construct($r, $g, $b) { + $this->r = $r; + $this->g = $g; + $this->b = $b; + } +} -- cgit v1.2.3