Browse Source

Fixed protected property in PragmaEscaped example (should be public)

Justin Hileman 15 năm trước cách đây
mục cha
commit
98ec8ea11a
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      examples/pragma_unescaped/PragmaUnescaped.php

+ 1 - 1
examples/pragma_unescaped/PragmaUnescaped.php

@@ -1,5 +1,5 @@
 <?php
 
 class PragmaUnescaped extends Mustache {
-	protected $vs = 'Bear > Shark';
+	public $vs = 'Bear > Shark';
 }