Completed
Push — master ( a400a4...020752 )
by David
07:41 queued 04:43
created
lib/Dwoo/Plugins/Blocks/PluginSmartyinterface.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -58,26 +58,26 @@  discard block
 block discarded – undo
58 58
             $callback      = $customPlugins[$func]['callback'];
59 59
             if (is_array($callback)) {
60 60
                 if (is_object($callback[0])) {
61
-                    $callback = '$this->customPlugins[\'' . $func . '\'][0]->' . $callback[1] . '(';
61
+                    $callback = '$this->customPlugins[\''.$func.'\'][0]->'.$callback[1].'(';
62 62
                 } else {
63
-                    $callback = '' . $callback[0] . '::' . $callback[1] . '(';
63
+                    $callback = ''.$callback[0].'::'.$callback[1].'(';
64 64
                 }
65 65
             } else {
66
-                $callback = $callback . '(';
66
+                $callback = $callback.'(';
67 67
             }
68 68
         } else {
69
-            $callback = 'smarty_block_' . $func . '(';
69
+            $callback = 'smarty_block_'.$func.'(';
70 70
         }
71 71
 
72 72
         $paramsOut = '';
73 73
         foreach ($params as $i => $p) {
74
-            $paramsOut .= var_export($i, true) . ' => ' . $p . ',';
74
+            $paramsOut .= var_export($i, true).' => '.$p.',';
75 75
         }
76 76
 
77 77
         $curBlock                      = &$compiler->getCurrentBlock();
78
-        $curBlock['params']['postOut'] = Compiler::PHP_OPEN . ' $_block_content = ob_get_clean(); $_block_repeat=false; echo ' . $callback . '$_tag_stack[count($_tag_stack)-1], $_block_content, $this, $_block_repeat); } array_pop($_tag_stack);' . Compiler::PHP_CLOSE;
78
+        $curBlock['params']['postOut'] = Compiler::PHP_OPEN.' $_block_content = ob_get_clean(); $_block_repeat=false; echo '.$callback.'$_tag_stack[count($_tag_stack)-1], $_block_content, $this, $_block_repeat); } array_pop($_tag_stack);'.Compiler::PHP_CLOSE;
79 79
 
80
-        return Compiler::PHP_OPEN . $prepend . ' if (!isset($_tag_stack)){ $_tag_stack = array(); } $_tag_stack[] = array(' . $paramsOut . '); $_block_repeat=true; ' . $callback . '$_tag_stack[count($_tag_stack)-1], null, $this, $_block_repeat); while ($_block_repeat) { ob_start();' . Compiler::PHP_CLOSE;
80
+        return Compiler::PHP_OPEN.$prepend.' if (!isset($_tag_stack)){ $_tag_stack = array(); } $_tag_stack[] = array('.$paramsOut.'); $_block_repeat=true; '.$callback.'$_tag_stack[count($_tag_stack)-1], null, $this, $_block_repeat); while ($_block_repeat) { ob_start();'.Compiler::PHP_CLOSE;
81 81
     }
82 82
 
83 83
     /**
@@ -91,6 +91,6 @@  discard block
 block discarded – undo
91 91
      */
92 92
     public static function postProcessing(Compiler $compiler, array $params, $prepend, $append, $content)
93 93
     {
94
-        return $content . $params['postOut'];
94
+        return $content.$params['postOut'];
95 95
     }
96 96
 }
Please login to merge, or discard this patch.
lib/Dwoo/Plugins/Blocks/PluginDynamic.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -67,18 +67,18 @@  discard block
 block discarded – undo
67 67
         }
68 68
         catch (CompilationException $e) {
69 69
         }
70
-        $output = Compiler::PHP_OPEN . 'if($doCache) {' . "\n\t" . 'echo \'<dwoo:dynamic_\'.$dynamicId.\'>' . str_replace('\'', '\\\'', $content) . '</dwoo:dynamic_\'.$dynamicId.\'>\';' . "\n} else {\n\t";
70
+        $output = Compiler::PHP_OPEN.'if($doCache) {'."\n\t".'echo \'<dwoo:dynamic_\'.$dynamicId.\'>'.str_replace('\'', '\\\'', $content).'</dwoo:dynamic_\'.$dynamicId.\'>\';'."\n} else {\n\t";
71 71
         if (substr($content, 0, strlen(Compiler::PHP_OPEN)) == Compiler::PHP_OPEN) {
72 72
             $output .= substr($content, strlen(Compiler::PHP_OPEN));
73 73
         } else {
74
-            $output .= Compiler::PHP_CLOSE . $content;
74
+            $output .= Compiler::PHP_CLOSE.$content;
75 75
         }
76 76
         if (substr($output, - strlen(Compiler::PHP_CLOSE)) == Compiler::PHP_CLOSE) {
77 77
             $output = substr($output, 0, - strlen(Compiler::PHP_CLOSE));
78 78
         } else {
79 79
             $output .= Compiler::PHP_OPEN;
80 80
         }
81
-        $output .= "\n}" . Compiler::PHP_CLOSE;
81
+        $output .= "\n}".Compiler::PHP_CLOSE;
82 82
 
83 83
         return $output;
84 84
     }
@@ -92,13 +92,13 @@  discard block
 block discarded – undo
92 92
      */
93 93
     public static function unescape($output, $dynamicId, $compiledFile)
94 94
     {
95
-        $output = preg_replace_callback('/<dwoo:dynamic_(' . $dynamicId . ')>(.+?)<\/dwoo:dynamic_' . $dynamicId . '>/s', array(
95
+        $output = preg_replace_callback('/<dwoo:dynamic_('.$dynamicId.')>(.+?)<\/dwoo:dynamic_'.$dynamicId.'>/s', array(
96 96
             'self',
97 97
             'unescapePhp'
98 98
         ), $output, - 1, $count);
99 99
         // re-add the includes on top of the file
100 100
         if ($count && preg_match('#/\* template head \*/(.+?)/\* end template head \*/#s', file_get_contents($compiledFile), $m)) {
101
-            $output = '<?php ' . $m[1] . ' ?>' . $output;
101
+            $output = '<?php '.$m[1].' ?>'.$output;
102 102
         }
103 103
 
104 104
         return $output;
@@ -111,6 +111,6 @@  discard block
 block discarded – undo
111 111
      */
112 112
     public static function unescapePhp($match)
113 113
     {
114
-        return preg_replace('{<\?php /\*' . $match[1] . '\*/ echo \'(.+?)\'; \?>}s', '$1', $match[2]);
114
+        return preg_replace('{<\?php /\*'.$match[1].'\*/ echo \'(.+?)\'; \?>}s', '$1', $match[2]);
115 115
     }
116 116
 }
Please login to merge, or discard this patch.
lib/Dwoo/Plugins/Blocks/PluginTextformat.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -72,13 +72,13 @@  discard block
 block discarded – undo
72 72
                 break;
73 73
         }
74 74
 
75
-        $this->wrap     = (int)$wrap;
76
-        $this->wrapChar = (string)$wrap_char;
77
-        $this->wrapCut  = (bool)$wrap_cut;
78
-        $this->indent   = (int)$indent;
79
-        $this->indChar  = (string)$indent_char;
80
-        $this->indFirst = (int)$indent_first + $this->indent;
81
-        $this->assign   = (string)$assign;
75
+        $this->wrap     = (int) $wrap;
76
+        $this->wrapChar = (string) $wrap_char;
77
+        $this->wrapCut  = (bool) $wrap_cut;
78
+        $this->indent   = (int) $indent;
79
+        $this->indChar  = (string) $indent_char;
80
+        $this->indFirst = (int) $indent_first+$this->indent;
81
+        $this->assign   = (string) $assign;
82 82
     }
83 83
 
84 84
     /**
@@ -107,13 +107,13 @@  discard block
 block discarded – undo
107 107
             ), str_replace("\n", '', $pgs[$i]));
108 108
 
109 109
             // wordwraps + indents lines
110
-            $pgs[$i] = str_repeat($this->indChar, $this->indFirst) . wordwrap($pgs[$i], max($this->wrap - $this->indent, 1), $this->wrapChar . str_repeat($this->indChar, $this->indent), $this->wrapCut);
110
+            $pgs[$i] = str_repeat($this->indChar, $this->indFirst).wordwrap($pgs[$i], max($this->wrap-$this->indent, 1), $this->wrapChar.str_repeat($this->indChar, $this->indent), $this->wrapCut);
111 111
         }
112 112
 
113 113
         if ($this->assign !== '') {
114
-            $this->core->assignInScope(implode($this->wrapChar . $this->wrapChar, $pgs), $this->assign);
114
+            $this->core->assignInScope(implode($this->wrapChar.$this->wrapChar, $pgs), $this->assign);
115 115
         } else {
116
-            return implode($this->wrapChar . $this->wrapChar, $pgs);
116
+            return implode($this->wrapChar.$this->wrapChar, $pgs);
117 117
         }
118 118
     }
119 119
 }
Please login to merge, or discard this patch.
lib/Dwoo/Plugins/Blocks/PluginCapture.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
      */
64 64
     public static function preProcessing(Compiler $compiler, array $params, $prepend, $append, $type)
65 65
     {
66
-        return Compiler::PHP_OPEN . $prepend . 'ob_start();' . $append . Compiler::PHP_CLOSE;
66
+        return Compiler::PHP_OPEN.$prepend.'ob_start();'.$append.Compiler::PHP_CLOSE;
67 67
     }
68 68
 
69 69
     /**
@@ -79,17 +79,17 @@  discard block
 block discarded – undo
79 79
     {
80 80
         $params = $compiler->getCompiledParams($params);
81 81
 
82
-        $out = $content . Compiler::PHP_OPEN . $prepend . "\n" . '$tmp = ob_get_clean();';
82
+        $out = $content.Compiler::PHP_OPEN.$prepend."\n".'$tmp = ob_get_clean();';
83 83
         if ($params['trim'] !== 'false' && $params['trim'] !== 0) {
84
-            $out .= "\n" . '$tmp = trim($tmp);';
84
+            $out .= "\n".'$tmp = trim($tmp);';
85 85
         }
86 86
         if ($params['cat'] === 'true' || $params['cat'] === 1) {
87
-            $out .= "\n" . '$tmp = $this->readVar(\'dwoo.capture.\'.' . $params['name'] . ') . $tmp;';
87
+            $out .= "\n".'$tmp = $this->readVar(\'dwoo.capture.\'.'.$params['name'].') . $tmp;';
88 88
         }
89 89
         if ($params['assign'] !== 'null') {
90
-            $out .= "\n" . '$this->scope[' . $params['assign'] . '] = $tmp;';
90
+            $out .= "\n".'$this->scope['.$params['assign'].'] = $tmp;';
91 91
         }
92 92
 
93
-        return $out . "\n" . '$this->globals[\'capture\'][' . $params['name'] . '] = $tmp;' . $append . Compiler::PHP_CLOSE;
93
+        return $out."\n".'$this->globals[\'capture\']['.$params['name'].'] = $tmp;'.$append.Compiler::PHP_CLOSE;
94 94
     }
95 95
 }
Please login to merge, or discard this patch.
lib/Dwoo/Plugins/Blocks/PluginElseif.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -80,15 +80,15 @@
 block discarded – undo
80 80
         $tokens = $compiler->getParamTokens($params);
81 81
         $params = $compiler->getCompiledParams($params);
82 82
 
83
-        $pre  = Compiler::PHP_OPEN . 'elseif (' . implode(' ', self::replaceKeywords($params['*'], $tokens['*'], $compiler)) . ") {\n" . Compiler::PHP_CLOSE;
84
-        $post = Compiler::PHP_OPEN . "\n}" . Compiler::PHP_CLOSE;
83
+        $pre  = Compiler::PHP_OPEN.'elseif ('.implode(' ', self::replaceKeywords($params['*'], $tokens['*'], $compiler)).") {\n".Compiler::PHP_CLOSE;
84
+        $post = Compiler::PHP_OPEN."\n}".Compiler::PHP_CLOSE;
85 85
 
86 86
         if (isset($params['hasElse'])) {
87 87
             $post .= $params['hasElse'];
88 88
         }
89 89
 
90 90
         $block                      = &$compiler->getCurrentBlock();
91
-        $block['params']['hasElse'] = $pre . $content . $post;
91
+        $block['params']['hasElse'] = $pre.$content.$post;
92 92
 
93 93
         return '';
94 94
     }
Please login to merge, or discard this patch.
lib/Dwoo/Plugins/Blocks/PluginForeach.php 1 patch
Spacing   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -112,15 +112,15 @@  discard block
 block discarded – undo
112 112
         }
113 113
 
114 114
         // evaluates which global variables have to be computed
115
-        $varName       = '$dwoo.foreach.' . trim($name, '"\'') . '.';
116
-        $shortVarName  = '$.foreach.' . trim($name, '"\'') . '.';
115
+        $varName       = '$dwoo.foreach.'.trim($name, '"\'').'.';
116
+        $shortVarName  = '$.foreach.'.trim($name, '"\'').'.';
117 117
         $usesAny       = strpos($tpl, $varName) !== false || strpos($tpl, $shortVarName) !== false;
118
-        $usesFirst     = strpos($tpl, $varName . 'first') !== false || strpos($tpl, $shortVarName . 'first') !== false;
119
-        $usesLast      = strpos($tpl, $varName . 'last') !== false || strpos($tpl, $shortVarName . 'last') !== false;
120
-        $usesIndex     = $usesFirst || strpos($tpl, $varName . 'index') !== false || strpos($tpl, $shortVarName . 'index') !== false;
121
-        $usesIteration = $usesLast || strpos($tpl, $varName . 'iteration') !== false || strpos($tpl, $shortVarName . 'iteration') !== false;
122
-        $usesShow      = strpos($tpl, $varName . 'show') !== false || strpos($tpl, $shortVarName . 'show') !== false;
123
-        $usesTotal     = $usesLast || strpos($tpl, $varName . 'total') !== false || strpos($tpl, $shortVarName . 'total') !== false;
118
+        $usesFirst     = strpos($tpl, $varName.'first') !== false || strpos($tpl, $shortVarName.'first') !== false;
119
+        $usesLast      = strpos($tpl, $varName.'last') !== false || strpos($tpl, $shortVarName.'last') !== false;
120
+        $usesIndex     = $usesFirst || strpos($tpl, $varName.'index') !== false || strpos($tpl, $shortVarName.'index') !== false;
121
+        $usesIteration = $usesLast || strpos($tpl, $varName.'iteration') !== false || strpos($tpl, $shortVarName.'iteration') !== false;
122
+        $usesShow      = strpos($tpl, $varName.'show') !== false || strpos($tpl, $shortVarName.'show') !== false;
123
+        $usesTotal     = $usesLast || strpos($tpl, $varName.'total') !== false || strpos($tpl, $shortVarName.'total') !== false;
124 124
 
125 125
         if (strpos($name, '$this->scope[') !== false) {
126 126
             $usesAny = $usesFirst = $usesLast = $usesIndex = $usesIteration = $usesShow = $usesTotal = true;
@@ -136,66 +136,66 @@  discard block
 block discarded – undo
136 136
         }
137 137
 
138 138
         // gets foreach id
139
-        $cnt = self::$cnt ++;
139
+        $cnt = self::$cnt++;
140 140
 
141 141
         // build pre content output
142
-        $pre = Compiler::PHP_OPEN . "\n" . '$_fh' . $cnt . '_data = ' . $src . ';';
142
+        $pre = Compiler::PHP_OPEN."\n".'$_fh'.$cnt.'_data = '.$src.';';
143 143
         // adds foreach properties
144 144
         if ($usesAny) {
145
-            $pre .= "\n" . '$this->globals["foreach"][' . $name . '] = array' . "\n(";
145
+            $pre .= "\n".'$this->globals["foreach"]['.$name.'] = array'."\n(";
146 146
             if ($usesIndex) {
147
-                $pre .= "\n\t" . '"index"		=> 0,';
147
+                $pre .= "\n\t".'"index"		=> 0,';
148 148
             }
149 149
             if ($usesIteration) {
150
-                $pre .= "\n\t" . '"iteration"		=> 1,';
150
+                $pre .= "\n\t".'"iteration"		=> 1,';
151 151
             }
152 152
             if ($usesFirst) {
153
-                $pre .= "\n\t" . '"first"		=> null,';
153
+                $pre .= "\n\t".'"first"		=> null,';
154 154
             }
155 155
             if ($usesLast) {
156
-                $pre .= "\n\t" . '"last"		=> null,';
156
+                $pre .= "\n\t".'"last"		=> null,';
157 157
             }
158 158
             if ($usesShow) {
159
-                $pre .= "\n\t" . '"show"		=> $this->isArray($_fh' . $cnt . '_data, true),';
159
+                $pre .= "\n\t".'"show"		=> $this->isArray($_fh'.$cnt.'_data, true),';
160 160
             }
161 161
             if ($usesTotal) {
162
-                $pre .= "\n\t" . '"total"		=> $this->count($_fh' . $cnt . '_data),';
162
+                $pre .= "\n\t".'"total"		=> $this->count($_fh'.$cnt.'_data),';
163 163
             }
164
-            $pre .= "\n);\n" . '$_fh' . $cnt . '_glob =& $this->globals["foreach"][' . $name . '];';
164
+            $pre .= "\n);\n".'$_fh'.$cnt.'_glob =& $this->globals["foreach"]['.$name.'];';
165 165
         }
166 166
         // checks if foreach must be looped
167
-        $pre .= "\n" . 'if ($this->isTraversable($_fh' . $cnt . '_data' . (isset($params['hasElse']) ? ', true' : '') . ') == true)' . "\n{";
167
+        $pre .= "\n".'if ($this->isTraversable($_fh'.$cnt.'_data'.(isset($params['hasElse']) ? ', true' : '').') == true)'."\n{";
168 168
         // iterates over keys
169
-        $pre .= "\n\t" . 'foreach ($_fh' . $cnt . '_data as ' . (isset($key) ? '$this->scope[' . $key . ']=>' : '') . '$this->scope[' . $val . '])' . "\n\t{";
169
+        $pre .= "\n\t".'foreach ($_fh'.$cnt.'_data as '.(isset($key) ? '$this->scope['.$key.']=>' : '').'$this->scope['.$val.'])'."\n\t{";
170 170
         // updates properties
171 171
         if ($usesFirst) {
172
-            $pre .= "\n\t\t" . '$_fh' . $cnt . '_glob["first"] = (string) ($_fh' . $cnt . '_glob["index"] === 0);';
172
+            $pre .= "\n\t\t".'$_fh'.$cnt.'_glob["first"] = (string) ($_fh'.$cnt.'_glob["index"] === 0);';
173 173
         }
174 174
         if ($usesLast) {
175
-            $pre .= "\n\t\t" . '$_fh' . $cnt . '_glob["last"] = (string) ($_fh' . $cnt . '_glob["iteration"] === $_fh' . $cnt . '_glob["total"]);';
175
+            $pre .= "\n\t\t".'$_fh'.$cnt.'_glob["last"] = (string) ($_fh'.$cnt.'_glob["iteration"] === $_fh'.$cnt.'_glob["total"]);';
176 176
         }
177
-        $pre .= "\n/* -- foreach start output */\n" . Compiler::PHP_CLOSE;
177
+        $pre .= "\n/* -- foreach start output */\n".Compiler::PHP_CLOSE;
178 178
 
179 179
         // build post content output
180
-        $post = Compiler::PHP_OPEN . "\n";
180
+        $post = Compiler::PHP_OPEN."\n";
181 181
 
182 182
         if (isset($implode)) {
183
-            $post .= '/* -- implode */' . "\n" . 'if (!$_fh' . $cnt . '_glob["last"]) {' . "\n\t" . 'echo ' . $implode . ";\n}\n";
183
+            $post .= '/* -- implode */'."\n".'if (!$_fh'.$cnt.'_glob["last"]) {'."\n\t".'echo '.$implode.";\n}\n";
184 184
         }
185 185
         $post .= '/* -- foreach end output */';
186 186
         // update properties
187 187
         if ($usesIndex) {
188
-            $post .= "\n\t\t" . '$_fh' . $cnt . '_glob["index"]+=1;';
188
+            $post .= "\n\t\t".'$_fh'.$cnt.'_glob["index"]+=1;';
189 189
         }
190 190
         if ($usesIteration) {
191
-            $post .= "\n\t\t" . '$_fh' . $cnt . '_glob["iteration"]+=1;';
191
+            $post .= "\n\t\t".'$_fh'.$cnt.'_glob["iteration"]+=1;';
192 192
         }
193 193
         // end loop
194
-        $post .= "\n\t}\n}" . Compiler::PHP_CLOSE;
194
+        $post .= "\n\t}\n}".Compiler::PHP_CLOSE;
195 195
         if (isset($params['hasElse'])) {
196 196
             $post .= $params['hasElse'];
197 197
         }
198 198
 
199
-        return $pre . $content . $post;
199
+        return $pre.$content.$post;
200 200
     }
201 201
 }
Please login to merge, or discard this patch.
lib/Dwoo/Plugins/Blocks/PluginTemplate.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -83,25 +83,25 @@
 block discarded – undo
83 83
     public static function postProcessing(Compiler $compiler, array $params, $prepend, $append, $content)
84 84
     {
85 85
         $paramstr = 'Dwoo\Core $dwoo';
86
-        $init     = 'static $_callCnt = 0;' . "\n" . '$dwoo->scope[\' ' . $params['uuid'] . '\'.$_callCnt] = array();' . "\n" . '$_scope = $dwoo->setScope(array(\' ' . $params['uuid'] . '\'.($_callCnt++)));' . "\n";
86
+        $init     = 'static $_callCnt = 0;'."\n".'$dwoo->scope[\' '.$params['uuid'].'\'.$_callCnt] = array();'."\n".'$_scope = $dwoo->setScope(array(\' '.$params['uuid'].'\'.($_callCnt++)));'."\n";
87 87
         $cleanup  = '/* -- template end output */ $dwoo->setScope($_scope, true);';
88 88
         foreach ($params['*'] as $param => $defValue) {
89 89
             if ($defValue === null) {
90
-                $paramstr .= ', $' . $param;
90
+                $paramstr .= ', $'.$param;
91 91
             } else {
92
-                $paramstr .= ', $' . $param . ' = ' . $defValue;
92
+                $paramstr .= ', $'.$param.' = '.$defValue;
93 93
             }
94
-            $init .= '$dwoo->scope[\'' . $param . '\'] = $' . $param . ";\n";
94
+            $init .= '$dwoo->scope[\''.$param.'\'] = $'.$param.";\n";
95 95
         }
96 96
         $init .= '/* -- template start output */';
97 97
 
98
-        $funcName = 'Plugin' . Core::toCamelCase($params['name']) . Core::toCamelCase($params['uuid']);
98
+        $funcName = 'Plugin'.Core::toCamelCase($params['name']).Core::toCamelCase($params['uuid']);
99 99
 
100 100
         $search      = array('$this->charset', '$this->', '$this,',);
101 101
         $replacement = array('$dwoo->getCharset()', '$dwoo->', '$dwoo,',);
102 102
         $content     = str_replace($search, $replacement, $content);
103 103
 
104
-        $body = 'if (!function_exists(\'' . $funcName . "')) {\nfunction " . $funcName . '(' . $paramstr . ') {' . "\n$init" . Compiler::PHP_CLOSE . $prepend . $content . $append . Compiler::PHP_OPEN . $cleanup . "\n}\n}";
104
+        $body = 'if (!function_exists(\''.$funcName."')) {\nfunction ".$funcName.'('.$paramstr.') {'."\n$init".Compiler::PHP_CLOSE.$prepend.$content.$append.Compiler::PHP_OPEN.$cleanup."\n}\n}";
105 105
         $compiler->addTemplatePlugin($params['name'], $params['*'], $params['uuid'], $body);
106 106
     }
107 107
 
Please login to merge, or discard this patch.
lib/Dwoo/Plugins/Blocks/PluginWith.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -86,14 +86,14 @@
 block discarded – undo
86 86
 
87 87
         $compiler->setScope($rparams['var']);
88 88
 
89
-        $pre = Compiler::PHP_OPEN . 'if (' . $cparams['var'] . ')' . "\n{\n" . '$_with' . (self::$cnt) . ' = $this->setScope("' . $rparams['var'] . '");' . "\n/* -- start with output */\n" . Compiler::PHP_CLOSE;
89
+        $pre = Compiler::PHP_OPEN.'if ('.$cparams['var'].')'."\n{\n".'$_with'.(self::$cnt).' = $this->setScope("'.$rparams['var'].'");'."\n/* -- start with output */\n".Compiler::PHP_CLOSE;
90 90
 
91
-        $post = Compiler::PHP_OPEN . "\n/* -- end with output */\n" . '$this->setScope($_with' . (self::$cnt ++) . ', true);' . "\n}\n" . Compiler::PHP_CLOSE;
91
+        $post = Compiler::PHP_OPEN."\n/* -- end with output */\n".'$this->setScope($_with'.(self::$cnt++).', true);'."\n}\n".Compiler::PHP_CLOSE;
92 92
 
93 93
         if (isset($params['hasElse'])) {
94 94
             $post .= $params['hasElse'];
95 95
         }
96 96
 
97
-        return $pre . $content . $post;
97
+        return $pre.$content.$post;
98 98
     }
99 99
 }
Please login to merge, or discard this patch.
lib/Dwoo/Plugins/Blocks/PluginA.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -60,9 +60,9 @@  discard block
 block discarded – undo
60 60
     {
61 61
         $p = $compiler->getCompiledParams($params);
62 62
 
63
-        $out = Compiler::PHP_OPEN . 'echo \'<a ' . self::paramsToAttributes($p, "'", $compiler);
63
+        $out = Compiler::PHP_OPEN.'echo \'<a '.self::paramsToAttributes($p, "'", $compiler);
64 64
 
65
-        return $out . '>\';' . Compiler::PHP_CLOSE;
65
+        return $out.'>\';'.Compiler::PHP_CLOSE;
66 66
     }
67 67
 
68 68
     /**
@@ -82,14 +82,14 @@  discard block
 block discarded – undo
82 82
         if ($content == '') {
83 83
             // merge </a> into the href if href is a string
84 84
             if (substr($p['href'], - 1) === '"' || substr($p['href'], - 1) === '\'') {
85
-                return Compiler::PHP_OPEN . 'echo ' . substr($p['href'], 0, - 1) . '</a>' . substr($p['href'], - 1) . ';' . Compiler::PHP_CLOSE;
85
+                return Compiler::PHP_OPEN.'echo '.substr($p['href'], 0, - 1).'</a>'.substr($p['href'], - 1).';'.Compiler::PHP_CLOSE;
86 86
             }
87 87
 
88 88
             // otherwise append
89
-            return Compiler::PHP_OPEN . 'echo ' . $p['href'] . '.\'</a>\';' . Compiler::PHP_CLOSE;
89
+            return Compiler::PHP_OPEN.'echo '.$p['href'].'.\'</a>\';'.Compiler::PHP_CLOSE;
90 90
         }
91 91
 
92 92
         // return content
93
-        return $content . '</a>';
93
+        return $content.'</a>';
94 94
     }
95 95
 }
Please login to merge, or discard this patch.