format fixes
[phpgitweb.git] / htdocs / lib / ContentProvider.class.php
index e88b948ff3872115b925c2819a46976eb9360388..0fc9685b54c27f3b73ee29460506ee183f2b43c7 100644 (file)
  */
 
 class ContentProvider {
-    private static $template_cache = array();
+       private static $template_cache = array();
        private static $overall_content = array();
        
        private $template, $subtemplate;
        private $content = array();
        
-    public function __construct($template, $subtemplate, $content = null) {
+       public function __construct($template, $subtemplate, $content = null) {
                $this->template = $template;
                $this->subtemplate = $subtemplate;
                
@@ -31,7 +31,7 @@ class ContentProvider {
                        $this->content = $content;
                }
        }
-    
+       
        public function set($name, $value) {
                $this->content[strtolower($name)] = $value;
        }