Ver código fonte

Private methods cannot be final

andre 1 ano atrás
pai
commit
987ca8a09b
1 arquivos alterados com 2 adições e 2 exclusões
  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()
     {
         
     }