Parcourir la source

Private methods cannot be final

andre il y a 1 an
Parent
commit
987ca8a09b
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      core/Http/View/Smarty.php

+ 2 - 2
core/Http/View/Smarty.php

@@ -18,12 +18,12 @@ class Smarty
     private $templateDIR;
     private $lang;
 
-    final private function __construct()
+    private function __construct()
     {
         $this->smarty = new \Smarty();
     }
 
-    final private function __clone()
+    private function __clone()
     {
         
     }