@@ -32,7 +32,7 @@ |
||
32 | 32 | |
33 | 33 | function __construct($message = "", $code = 0, $previous = NULL) { |
34 | 34 | ///@todo Include Line number & file name within parse error exceptions |
35 | - $message .= ", on line " . Hamle\Hamle::getLineNo() . " in file ?.hamle"; |
|
35 | + $message .= ", on line ".Hamle\Hamle::getLineNo()." in file ?.hamle"; |
|
36 | 36 | parent::__construct($message, $code, $previous); |
37 | 37 | } |
38 | 38 |
@@ -34,6 +34,6 @@ |
||
34 | 34 | } |
35 | 35 | |
36 | 36 | function isClicked() { |
37 | - return isset($_REQUEST[$this->form . "_" . $this->name]); |
|
37 | + return isset($_REQUEST[$this->form."_".$this->name]); |
|
38 | 38 | } |
39 | 39 | } |
40 | 40 | \ No newline at end of file |
@@ -39,8 +39,8 @@ |
||
39 | 39 | } |
40 | 40 | |
41 | 41 | static function filterText($s) { |
42 | - return "/*<![CDATA[*/\n" . |
|
42 | + return "/*<![CDATA[*/\n". |
|
43 | 43 | /*preg_replace(HamlParser::MATCH_INTERPOLATION, '<?php echo \1; ?>', $text)*/ |
44 | - $s . "/*]]>*/"; |
|
44 | + $s."/*]]>*/"; |
|
45 | 45 | } |
46 | 46 | } |
47 | 47 | \ No newline at end of file |
@@ -35,10 +35,10 @@ |
||
35 | 35 | } |
36 | 36 | |
37 | 37 | function toPHP() { |
38 | - return '$form->getField(' . Text::varToCode($this->var) . ')->getValue()'; |
|
38 | + return '$form->getField('.Text::varToCode($this->var).')->getValue()'; |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | function toHTML($escape = false) { |
42 | - return '<?=' . $this->toPHP() . '?>'; |
|
42 | + return '<?='.$this->toPHP().'?>'; |
|
43 | 43 | } |
44 | 44 | } |
45 | 45 | \ No newline at end of file |
@@ -34,6 +34,6 @@ |
||
34 | 34 | } |
35 | 35 | |
36 | 36 | function isClicked() { |
37 | - return isset($_REQUEST[$this->form . "_" . $this->name]); |
|
37 | + return isset($_REQUEST[$this->form."_".$this->name]); |
|
38 | 38 | } |
39 | 39 | } |
40 | 40 | \ No newline at end of file |