Explorar el Código

Fixed protected property in PragmaEscaped example (should be public)

Justin Hileman hace 15 años
padre
commit
98ec8ea11a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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';
 }