Switched PlImage's fields from private to protected
authorRiton <henri.jouhaud@polytechnique.org>
Tue, 7 Sep 2010 15:33:18 +0000 (17:33 +0200)
committerFlorent Bruneau <florent.bruneau@polytechnique.org>
Tue, 7 Sep 2010 15:38:58 +0000 (17:38 +0200)
Signed-off-by: Riton <henri.jouhaud@polytechnique.org>
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
classes/plimage.php

index c4b3e05..232fb47 100644 (file)
  ***************************************************************************/
 
 class PlImage {
-    private $mime = null;
-    private $x = null;
-    private $y = null;
+    protected $mime = null;
+    protected $x = null;
+    protected $y = null;
 
-    private $data = null;
-    private $file = null;
+    protected $data = null;
+    protected $file = null;
 
     private function __construct()
     {