Skip to content

Commit

Permalink
Merge pull request #284 from nanasess/fix-scview
Browse files Browse the repository at this point in the history
メンバ変数の修飾子を var から public に修正
  • Loading branch information
kazumiiiiiiiiiii authored Jul 2, 2019
2 parents a097589 + 3440117 commit b6011d9
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions data/class/SC_View.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,11 @@

class SC_View
{
var $_smarty;
/** @var SmartyBC */
public $_smarty;

var $objPage;
/** @var LC_Page */
public $objPage;

// コンストラクタ
public function __construct()
Expand Down Expand Up @@ -255,8 +257,7 @@ public function debug($var = true)
*
* @param mixed $tpl_source
* @param mixed $smarty
* @access public
* @return void
* @return array|string|null
*/
public function lower_compatibility_smarty($tpl_source, $smarty)
{
Expand Down

0 comments on commit b6011d9

Please sign in to comment.