以下のエラーメッセージが発生。
| 1 | PHP Fatal error:  Type of SmartyCompilerException::$line must be int (as in class Exception) in /home/hoge/www/smarty-3.1.35/libs/sysplugins/smartycompilerexception.php on line 8 | 
/home/hoge/www/smarty-3.1.35/libs/sysplugins/smartycompilerexception.php
を以下のように編集。してみがたかわらず。
| 1 2 3 4 5 6 |     /**      * The line number of the template error      *      * @type int|null      */     public $line = 0; # nullから0に変更 | 
原因は作成したsmartyのテンプレートファイル内の、文字列のダブルクオテーションを閉じ忘れていたためでした。
| 1 | {"ほげほげ|_} | 
 
  
  
  
  
