Passed
Push — master ( 9fb8bd...080937 )
by Chris
03:06
created
php/hamle/Hamle.php 2 patches
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -63,14 +63,14 @@  discard block
 block discarded – undo
63 63
 
64 64
   public $baseModel;
65 65
 
66
-  const REL_CHILD = 0x01;  /* Child Relation */
66
+  const REL_CHILD = 0x01; /* Child Relation */
67 67
   const REL_PARENT = 0x02; /* Parent Relation */
68
-  const REL_ANY = 0x03;    /* Unspecified or any relation */
68
+  const REL_ANY = 0x03; /* Unspecified or any relation */
69 69
   
70
-  const SORT_NATURAL = 0x00;    /* Sort in what ever order is 'default' */
71
-  const SORT_ASCENDING = 0x02;  /* Sort Ascending */
70
+  const SORT_NATURAL = 0x00; /* Sort in what ever order is 'default' */
71
+  const SORT_ASCENDING = 0x02; /* Sort Ascending */
72 72
   const SORT_DESCENDING = 0x03; /* Sort Decending */
73
-  const SORT_RANDOM = 0x04;     /* Sort Randomly */
73
+  const SORT_RANDOM = 0x04; /* Sort Randomly */
74 74
   /**
75 75
    * Create new HAMLE Parser
76 76
    * 
@@ -81,12 +81,12 @@  discard block
 block discarded – undo
81 81
    */
82 82
   function __construct($baseModel, $setup = NULL) {
83 83
     self::$me = $this;
84
-    if(!$setup)
84
+    if (!$setup)
85 85
       $setup = new Setup();
86 86
     $this->parse = new Parse();
87
-    if(!$setup instanceOf Setup)
87
+    if (!$setup instanceOf Setup)
88 88
       throw new Exception\Unsupported("Unsupported Setup Helper was passed, it must extends hamleSetup");
89
-    if(!$baseModel instanceOf Model)
89
+    if (!$baseModel instanceOf Model)
90 90
       throw new Exception\Unsupported("Unsupported Model(".get_class($baseModel).") Type was passed, it must implement hamleModel");
91 91
     $this->setup = $setup;
92 92
     $this->baseModel = $baseModel;
@@ -94,9 +94,9 @@  discard block
 block discarded – undo
94 94
   }
95 95
 
96 96
   function initSnipFiles() {
97
-    if($this->snipMod == 0) {
97
+    if ($this->snipMod == 0) {
98 98
       $this->snipFiles = $this->setup->snippetFiles();
99
-      foreach($this->snipFiles as $f) {
99
+      foreach ($this->snipFiles as $f) {
100 100
         if (!file_exists($f)) throw new Exception\NotFound("Unable to find Snippet File ($f)");
101 101
         $this->snipFiles = max($this->snipFiles, filemtime($f));
102 102
       }
@@ -111,17 +111,17 @@  discard block
 block discarded – undo
111 111
    */
112 112
   function load($hamleFile, \Closure $parseFunc = null) {
113 113
     $template = $this->setup->templatePath($hamleFile);
114
-      if(!file_exists($template)) 
114
+      if (!file_exists($template)) 
115 115
         throw new Exception\NotFound("Unable to find HAMLE Template ($template)");
116 116
     $this->cacheFile = $this->setup->cachePath(
117
-                  str_replace("/","-",$hamleFile).".php");
117
+                  str_replace("/", "-", $hamleFile).".php");
118 118
     $this->setup->debugLog("Set cache file path to ({$this->cacheFile})");
119
-    $cacheFileAge = is_file($this->cacheFile)?filemtime($this->cacheFile):0;
119
+    $cacheFileAge = is_file($this->cacheFile) ?filemtime($this->cacheFile) : 0;
120 120
     $cacheDirty = !$this->cache ||
121 121
         $cacheFileAge < $this->snipMod || $cacheFileAge < filemtime($template);
122
-    if($cacheDirty) {
122
+    if ($cacheDirty) {
123 123
       $this->setup->debugLog("Parsing File ($template to {$this->cacheFile})");
124
-      $this->parse($parseFunc?"":file_get_contents($template), $parseFunc);
124
+      $this->parse($parseFunc ? "" : file_get_contents($template), $parseFunc);
125 125
     } else
126 126
       $this->setup->debugLog("Using Cached file ({$this->cacheFile})");
127 127
     return $this;
@@ -135,22 +135,22 @@  discard block
 block discarded – undo
135 135
    * @throws Exception\ParseError if unable to write to the cache file
136 136
    */
137 137
   function parse($hamleCode, \Closure $parseFunc = null) {
138
-    if(!$this->cacheFile)
138
+    if (!$this->cacheFile)
139 139
         $this->cacheFile = $this->setup->cachePath("string.hamle.php");
140
-    if($parseFunc)
140
+    if ($parseFunc)
141 141
       $parseFunc($this->parse);
142 142
     else
143 143
       $this->parse->str($hamleCode);
144 144
     $this->setup->debugLog("Loading Snippet Files");
145
-    foreach($this->snipFiles as $snip)
145
+    foreach ($this->snipFiles as $snip)
146 146
       $this->parse->parseSnip(file_get_contents($snip));
147 147
     $this->setup->debugLog("Applying Snippet Files");
148 148
     $this->parse->applySnip();
149 149
     $this->setup->debugLog("Executing Parse Filters");
150
-    foreach($this->setup->getFilters() as $filter)
150
+    foreach ($this->setup->getFilters() as $filter)
151 151
       $this->parse->parseFilter($filter);
152 152
     $this->setup->debugLog("Updating Cache File ({$this->cacheFile})");
153
-    if(FALSE === file_put_contents($this->cacheFile, $this->parse->output($this->setup->getMinify())))
153
+    if (FALSE === file_put_contents($this->cacheFile, $this->parse->output($this->setup->getMinify())))
154 154
       throw new Exception\ParseError(
155 155
                       "Unable to write to cache file ({$this->cacheFile})");
156 156
   }
@@ -161,9 +161,9 @@  discard block
 block discarded – undo
161 161
    */
162 162
   function string($hamleString) {
163 163
     $md5 = md5($hamleString);
164
-    $stringId = substr($md5,0,12).substr($md5,24,8);
164
+    $stringId = substr($md5, 0, 12).substr($md5, 24, 8);
165 165
     $this->cacheFile = $this->setup->cachePath("string.$stringId.hamle.php");
166
-    if(!is_file($this->cacheFile))
166
+    if (!is_file($this->cacheFile))
167 167
       $this->parse($hamleString);
168 168
   }
169 169
 
@@ -183,9 +183,9 @@  discard block
 block discarded – undo
183 183
       $baseModel = $this->baseModel;
184 184
       $this->baseModel = null;
185 185
       $currentModel = $baseModel == Scope::getTopScope();
186
-      if(!$currentModel && $baseModel) Scope::add($baseModel);
186
+      if (!$currentModel && $baseModel) Scope::add($baseModel);
187 187
       require $this->cacheFile;
188
-      if(!$currentModel && $baseModel) Scope::done();
188
+      if (!$currentModel && $baseModel) Scope::done();
189 189
       $this->baseModel = $baseModel;
190 190
       $out = ob_get_contents();
191 191
       ob_end_clean();
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
    * @return int The line number being passed by the parser
203 203
    */
204 204
   static function getLineNo() {
205
-    if(!isset(self::$me))
205
+    if (!isset(self::$me))
206 206
       return 0;
207 207
     return self::$me->parse->getLineNo();
208 208
   }
Please login to merge, or discard this patch.
Braces   +47 added lines, -29 removed lines patch added patch discarded remove patch
@@ -81,13 +81,16 @@  discard block
 block discarded – undo
81 81
    */
82 82
   function __construct($baseModel, $setup = NULL) {
83 83
     self::$me = $this;
84
-    if(!$setup)
85
-      $setup = new Setup();
84
+    if(!$setup) {
85
+          $setup = new Setup();
86
+    }
86 87
     $this->parse = new Parse();
87
-    if(!$setup instanceOf Setup)
88
-      throw new Exception\Unsupported("Unsupported Setup Helper was passed, it must extends hamleSetup");
89
-    if(!$baseModel instanceOf Model)
90
-      throw new Exception\Unsupported("Unsupported Model(".get_class($baseModel).") Type was passed, it must implement hamleModel");
88
+    if(!$setup instanceOf Setup) {
89
+          throw new Exception\Unsupported("Unsupported Setup Helper was passed, it must extends hamleSetup");
90
+    }
91
+    if(!$baseModel instanceOf Model) {
92
+          throw new Exception\Unsupported("Unsupported Model(".get_class($baseModel).") Type was passed, it must implement hamleModel");
93
+    }
91 94
     $this->setup = $setup;
92 95
     $this->baseModel = $baseModel;
93 96
     $this->initSnipFiles();
@@ -97,7 +100,9 @@  discard block
 block discarded – undo
97 100
     if($this->snipMod == 0) {
98 101
       $this->snipFiles = $this->setup->snippetFiles();
99 102
       foreach($this->snipFiles as $f) {
100
-        if (!file_exists($f)) throw new Exception\NotFound("Unable to find Snippet File ($f)");
103
+        if (!file_exists($f)) {
104
+          throw new Exception\NotFound("Unable to find Snippet File ($f)");
105
+        }
101 106
         $this->snipFiles = max($this->snipFiles, filemtime($f));
102 107
       }
103 108
     }
@@ -111,8 +116,9 @@  discard block
 block discarded – undo
111 116
    */
112 117
   function load($hamleFile, \Closure $parseFunc = null) {
113 118
     $template = $this->setup->templatePath($hamleFile);
114
-      if(!file_exists($template)) 
115
-        throw new Exception\NotFound("Unable to find HAMLE Template ($template)");
119
+      if(!file_exists($template)) {
120
+              throw new Exception\NotFound("Unable to find HAMLE Template ($template)");
121
+      }
116 122
     $this->cacheFile = $this->setup->cachePath(
117 123
                   str_replace("/","-",$hamleFile).".php");
118 124
     $this->setup->debugLog("Set cache file path to ({$this->cacheFile})");
@@ -122,8 +128,9 @@  discard block
 block discarded – undo
122 128
     if($cacheDirty) {
123 129
       $this->setup->debugLog("Parsing File ($template to {$this->cacheFile})");
124 130
       $this->parse($parseFunc?"":file_get_contents($template), $parseFunc);
125
-    } else
126
-      $this->setup->debugLog("Using Cached file ({$this->cacheFile})");
131
+    } else {
132
+          $this->setup->debugLog("Using Cached file ({$this->cacheFile})");
133
+    }
127 134
     return $this;
128 135
   }
129 136
   /**
@@ -135,24 +142,29 @@  discard block
 block discarded – undo
135 142
    * @throws Exception\ParseError if unable to write to the cache file
136 143
    */
137 144
   function parse($hamleCode, \Closure $parseFunc = null) {
138
-    if(!$this->cacheFile)
139
-        $this->cacheFile = $this->setup->cachePath("string.hamle.php");
140
-    if($parseFunc)
141
-      $parseFunc($this->parse);
142
-    else
143
-      $this->parse->str($hamleCode);
145
+    if(!$this->cacheFile) {
146
+            $this->cacheFile = $this->setup->cachePath("string.hamle.php");
147
+    }
148
+    if($parseFunc) {
149
+          $parseFunc($this->parse);
150
+    } else {
151
+          $this->parse->str($hamleCode);
152
+    }
144 153
     $this->setup->debugLog("Loading Snippet Files");
145
-    foreach($this->snipFiles as $snip)
146
-      $this->parse->parseSnip(file_get_contents($snip));
154
+    foreach($this->snipFiles as $snip) {
155
+          $this->parse->parseSnip(file_get_contents($snip));
156
+    }
147 157
     $this->setup->debugLog("Applying Snippet Files");
148 158
     $this->parse->applySnip();
149 159
     $this->setup->debugLog("Executing Parse Filters");
150
-    foreach($this->setup->getFilters() as $filter)
151
-      $this->parse->parseFilter($filter);
160
+    foreach($this->setup->getFilters() as $filter) {
161
+          $this->parse->parseFilter($filter);
162
+    }
152 163
     $this->setup->debugLog("Updating Cache File ({$this->cacheFile})");
153
-    if(FALSE === file_put_contents($this->cacheFile, $this->parse->output($this->setup->getMinify())))
154
-      throw new Exception\ParseError(
164
+    if(FALSE === file_put_contents($this->cacheFile, $this->parse->output($this->setup->getMinify()))) {
165
+          throw new Exception\ParseError(
155 166
                       "Unable to write to cache file ({$this->cacheFile})");
167
+    }
156 168
   }
157 169
 
158 170
   /**
@@ -163,8 +175,9 @@  discard block
 block discarded – undo
163 175
     $md5 = md5($hamleString);
164 176
     $stringId = substr($md5,0,12).substr($md5,24,8);
165 177
     $this->cacheFile = $this->setup->cachePath("string.$stringId.hamle.php");
166
-    if(!is_file($this->cacheFile))
167
-      $this->parse($hamleString);
178
+    if(!is_file($this->cacheFile)) {
179
+          $this->parse($hamleString);
180
+    }
168 181
   }
169 182
 
170 183
   function getCacheFileName() {
@@ -183,9 +196,13 @@  discard block
 block discarded – undo
183 196
       $baseModel = $this->baseModel;
184 197
       $this->baseModel = null;
185 198
       $currentModel = $baseModel == Scope::getTopScope();
186
-      if(!$currentModel && $baseModel) Scope::add($baseModel);
199
+      if(!$currentModel && $baseModel) {
200
+        Scope::add($baseModel);
201
+      }
187 202
       require $this->cacheFile;
188
-      if(!$currentModel && $baseModel) Scope::done();
203
+      if(!$currentModel && $baseModel) {
204
+        Scope::done();
205
+      }
189 206
       $this->baseModel = $baseModel;
190 207
       $out = ob_get_contents();
191 208
       ob_end_clean();
@@ -202,8 +219,9 @@  discard block
 block discarded – undo
202 219
    * @return int The line number being passed by the parser
203 220
    */
204 221
   static function getLineNo() {
205
-    if(!isset(self::$me))
206
-      return 0;
222
+    if(!isset(self::$me)) {
223
+          return 0;
224
+    }
207 225
     return self::$me->parse->getLineNo();
208 226
   }
209 227
 
Please login to merge, or discard this patch.
php/hamle/Tag/DynHtml.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -38,14 +38,14 @@  discard block
 block discarded – undo
38 38
     $this->source[] = $ref;
39 39
     $this->baseType = $tag;
40 40
     self::$var++;
41
-    $this->varname = "\$dynhtml" . self::$var;
41
+    $this->varname = "\$dynhtml".self::$var;
42 42
   }
43 43
 
44 44
   function render($indent = 0, $minify = false) {
45 45
     $data = H\Text::varToCode(array("base" => $this->baseType, "type" => $this->type, "opt" => $this->opt, "source" => $this->source, "content" => $this->content));
46
-    $out = "<?php " . $this->varname . "=$data; echo Hamle\\Tag\\DynHtml::toStTag(" . $this->varname . ",\$form).";
47
-    $out .= "implode(\"\\n\"," . $this->varname . "['content']).";
48
-    $out .= "Hamle\\Tag\\DynHtml::toEnTag(" . $this->varname . ",\$form)?>".($minify ? '' : "\n");
46
+    $out = "<?php ".$this->varname."=$data; echo Hamle\\Tag\\DynHtml::toStTag(".$this->varname.",\$form).";
47
+    $out .= "implode(\"\\n\",".$this->varname."['content']).";
48
+    $out .= "Hamle\\Tag\\DynHtml::toEnTag(".$this->varname.",\$form)?>".($minify ? '' : "\n");
49 49
     return $out;
50 50
   }
51 51
 
@@ -57,21 +57,21 @@  discard block
 block discarded – undo
57 57
     foreach ($d['source'] as $source) {
58 58
       $form->getField($source)->getDynamicAtt($d['base'], $d['opt'], $d['type'], $d['content']);
59 59
     }
60
-    $out = "<" . $d['type'] . " ";
60
+    $out = "<".$d['type']." ";
61 61
     foreach ($d['opt'] as $k => $v) {
62 62
       if (is_array($v)) {
63 63
         foreach ($v as $k2 => $v2)
64
-          if ($v[$k2] instanceof Text) $v[$k2] = eval('return ' . $v[$k2]->toPHP() . ';');
64
+          if ($v[$k2] instanceof Text) $v[$k2] = eval('return '.$v[$k2]->toPHP().';');
65 65
         $v = implode(" ", $v);
66 66
       }
67
-      if ($v instanceOf H\Text) $v = eval('return ' . $v->toPHP() . ';');
68
-      $out .= $k . "=\"" . htmlspecialchars($v) . "\" ";
67
+      if ($v instanceOf H\Text) $v = eval('return '.$v->toPHP().';');
68
+      $out .= $k."=\"".htmlspecialchars($v)."\" ";
69 69
     }
70 70
     $out .= in_array($d['type'], self::$selfCloseTags) ? "/>" : ">";
71 71
     return $out;
72 72
   }
73 73
 
74 74
   static function toEnTag($d, $form) {
75
-    return in_array($d['type'], self::$selfCloseTags) ? '' : "</" . $d['type'] . ">";
75
+    return in_array($d['type'], self::$selfCloseTags) ? '' : "</".$d['type'].">";
76 76
   }
77 77
 }
78 78
\ No newline at end of file
Please login to merge, or discard this patch.
php/hamle/Tag/Control.php 2 patches
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -47,13 +47,13 @@  discard block
 block discarded – undo
47 47
    */
48 48
   function __construct($tag, $parentTag = null) {
49 49
     parent::__construct();
50
-    $this->o = "\$o" . self::$instCount++;
50
+    $this->o = "\$o".self::$instCount++;
51 51
     $this->type = strtolower($tag);
52 52
     $this->var = "";
53 53
     if ($parentTag && $this->type == "else") {
54
-      if($parentTag instanceof H\Tag) {
54
+      if ($parentTag instanceof H\Tag) {
55 55
         $elseTag = $parentTag->tags[count($parentTag->tags) - 1];
56
-        if($elseTag instanceof H\Tag\Control &&
56
+        if ($elseTag instanceof H\Tag\Control &&
57 57
             in_array($elseTag->type, array('with', 'if'))
58 58
         ) {
59 59
           $elseTag->else = true;
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
   }
68 68
 
69 69
   function renderStTag() {
70
-    $out = "<" . "?php ";
70
+    $out = "<"."?php ";
71 71
     $scopeName = "";
72 72
     if (preg_match('/ as ([a-zA-Z]+)$/', $this->var, $m)) {
73 73
       $scopeName = $m[1];
@@ -78,20 +78,20 @@  discard block
 block discarded – undo
78 78
     switch ($this->type) {
79 79
       case "each":
80 80
         if ($this->var)
81
-          $out .= "foreach(" . $hsv->toPHP() . " as {$this->o}) { \n";
81
+          $out .= "foreach(".$hsv->toPHP()." as {$this->o}) { \n";
82 82
         else
83 83
           $out .= "foreach(Hamle\\Scope::get() as {$this->o}) { \n";
84 84
         $out .= "Hamle\\Scope::add({$this->o}); ";
85 85
         break;
86 86
       case "if":
87 87
         $hsvcomp = new H\Text\Comparison($this->var);
88
-        $out .= "if(" . $hsvcomp->toPHP() . ") {";
88
+        $out .= "if(".$hsvcomp->toPHP().") {";
89 89
         break;
90 90
       case "with":
91 91
         if ($scopeName)
92
-          $out .= "Hamle\\Scope::add(" . $hsv->toPHP() . ", \"$scopeName\");\n;";
92
+          $out .= "Hamle\\Scope::add(".$hsv->toPHP().", \"$scopeName\");\n;";
93 93
         else {
94
-          $out .= "if(({$this->o} = " . $hsv->toPHP() . ") && " .
94
+          $out .= "if(({$this->o} = ".$hsv->toPHP().") && ".
95 95
               "{$this->o}->valid()) {\n";
96 96
           $out .= "Hamle\\Scope::add({$this->o});\n;";
97 97
         }
@@ -101,13 +101,13 @@  discard block
 block discarded – undo
101 101
         break;
102 102
       case "include":
103 103
         $file = $hsv->toHTML();
104
-        if($file[0] == "#")
104
+        if ($file[0] == "#")
105 105
           $out .= "echo Hamle\\Run::includeFragment(".$hsv->toPHP().");";
106 106
         else
107
-          $out .= "echo Hamle\\Run::includeFile(" . $hsv->toPHP() . ");";
107
+          $out .= "echo Hamle\\Run::includeFile(".$hsv->toPHP().");";
108 108
         break;
109 109
     }
110
-    return $out . "\n?>";
110
+    return $out."\n?>";
111 111
   }
112 112
 
113 113
   /**
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
   }
119 119
 
120 120
   function renderEnTag() {
121
-    $out = '<' . '?php ';
121
+    $out = '<'.'?php ';
122 122
     switch ($this->type) {
123 123
       case "each";
124 124
         $out .= 'Hamle\\Scope::done(); ';
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
         break;
142 142
     }
143 143
     if ($this->else) $out .= "else{";
144
-    return $out . "\n?>";
144
+    return $out."\n?>";
145 145
   }
146 146
 
147 147
   function render($indent = 0, $minify = false) {
Please login to merge, or discard this patch.
Braces   +28 added lines, -19 removed lines patch added patch discarded remove patch
@@ -73,14 +73,16 @@  discard block
 block discarded – undo
73 73
       $scopeName = $m[1];
74 74
       $lookup = substr($this->var, 0, strlen($this->var) - strlen($m[0]));
75 75
       $hsv = new H\Text(trim($lookup), H\Text::TOKEN_CONTROL);
76
-    } else
77
-      $hsv = new H\Text($this->var, H\Text::TOKEN_CONTROL);
76
+    } else {
77
+          $hsv = new H\Text($this->var, H\Text::TOKEN_CONTROL);
78
+    }
78 79
     switch ($this->type) {
79 80
       case "each":
80
-        if ($this->var)
81
-          $out .= "foreach(" . $hsv->toPHP() . " as {$this->o}) { \n";
82
-        else
83
-          $out .= "foreach(Hamle\\Scope::get() as {$this->o}) { \n";
81
+        if ($this->var) {
82
+                  $out .= "foreach(" . $hsv->toPHP() . " as {$this->o}) { \n";
83
+        } else {
84
+                  $out .= "foreach(Hamle\\Scope::get() as {$this->o}) { \n";
85
+        }
84 86
         $out .= "Hamle\\Scope::add({$this->o}); ";
85 87
         break;
86 88
       case "if":
@@ -88,9 +90,9 @@  discard block
 block discarded – undo
88 90
         $out .= "if(" . $hsvcomp->toPHP() . ") {";
89 91
         break;
90 92
       case "with":
91
-        if ($scopeName)
92
-          $out .= "Hamle\\Scope::add(" . $hsv->toPHP() . ", \"$scopeName\");\n;";
93
-        else {
93
+        if ($scopeName) {
94
+                  $out .= "Hamle\\Scope::add(" . $hsv->toPHP() . ", \"$scopeName\");\n;";
95
+        } else {
94 96
           $out .= "if(({$this->o} = " . $hsv->toPHP() . ") && " .
95 97
               "{$this->o}->valid()) {\n";
96 98
           $out .= "Hamle\\Scope::add({$this->o});\n;";
@@ -101,10 +103,11 @@  discard block
 block discarded – undo
101 103
         break;
102 104
       case "include":
103 105
         $file = $hsv->toHTML();
104
-        if($file[0] == "#")
105
-          $out .= "echo Hamle\\Run::includeFragment(".$hsv->toPHP().");";
106
-        else
107
-          $out .= "echo Hamle\\Run::includeFile(" . $hsv->toPHP() . ");";
106
+        if($file[0] == "#") {
107
+                  $out .= "echo Hamle\\Run::includeFragment(".$hsv->toPHP().");";
108
+        } else {
109
+                  $out .= "echo Hamle\\Run::includeFile(" . $hsv->toPHP() . ");";
110
+        }
108 111
         break;
109 112
     }
110 113
     return $out . "\n?>";
@@ -123,8 +126,9 @@  discard block
 block discarded – undo
123 126
       case "each";
124 127
         $out .= 'Hamle\\Scope::done(); ';
125 128
         $out .= '}';
126
-        if (!$this->var)
127
-          $out .= "Hamle\\Scope::get()->rewind();\n";
129
+        if (!$this->var) {
130
+                  $out .= "Hamle\\Scope::get()->rewind();\n";
131
+        }
128 132
         break;
129 133
       case "if":
130 134
       case "else":
@@ -140,7 +144,9 @@  discard block
 block discarded – undo
140 144
         return "";
141 145
         break;
142 146
     }
143
-    if ($this->else) $out .= "else{";
147
+    if ($this->else) {
148
+      $out .= "else{";
149
+    }
144 150
     return $out . "\n?>";
145 151
   }
146 152
 
@@ -148,9 +154,12 @@  discard block
 block discarded – undo
148 154
     $ind = $minify ? '' : str_pad('', $indent);
149 155
     $oneliner = (!(count($this->content) > 1 || $this->tags));
150 156
     $out = $this->renderStTag();
151
-    if ($this->content) $out .= $this->renderContent($ind, $oneliner || $minify);
152
-    foreach ($this->tags as $tag)
153
-      $out .= $tag->render($indent, $minify);
157
+    if ($this->content) {
158
+      $out .= $this->renderContent($ind, $oneliner || $minify);
159
+    }
160
+    foreach ($this->tags as $tag) {
161
+          $out .= $tag->render($indent, $minify);
162
+    }
154 163
     $out .= $this->renderEnTag();
155 164
     return $out;
156 165
   }
Please login to merge, or discard this patch.
php/hamle/Parse.php 1 patch
Braces   +61 added lines, -41 removed lines patch added patch discarded remove patch
@@ -109,22 +109,25 @@  discard block
 block discarded – undo
109 109
     $revSnip = array();
110 110
     /** @var Tag[] $roots */
111 111
     $roots = array();
112
-    foreach ($this->root as $snip)
113
-      if ($snip instanceOf Tag\Snippet) {
112
+    foreach ($this->root as $snip) {
113
+          if ($snip instanceOf Tag\Snippet) {
114 114
         if ($snip->getType() == "append") {
115
-          array_unshift($revSnip, $snip);
115
+          array_unshift($revSnip, $snip);
116
+    }
116 117
         } else {
117 118
           $fwdSnip[] = $snip;
118 119
         }
119 120
       } else {
120 121
         $roots[] = $snip;
121 122
       }
122
-    foreach ($fwdSnip as $snip)
123
-      foreach ($roots as $root)
124
-        $snip->apply($root);
125
-    foreach ($revSnip as $snip)
126
-      foreach ($roots as $root)
127
-        $snip->apply($root);
123
+    foreach ($fwdSnip as $snip) {
124
+          foreach ($roots as $root)
125
+        $snip->apply($root);
126
+    }
127
+    foreach ($revSnip as $snip) {
128
+          foreach ($roots as $root)
129
+        $snip->apply($root);
130
+    }
128 131
     $this->root = $roots;
129 132
   }
130 133
 
@@ -144,9 +147,11 @@  discard block
 block discarded – undo
144 147
     $heir = array();
145 148
     while ($this->lineNo < $this->lineCount) {
146 149
       $line = $this->lines[$this->lineNo];
147
-      if (trim($line)) if (preg_match(self::REGEX_PARSE_LINE, $line, $m)) {
150
+      if (trim($line)) {
151
+        if (preg_match(self::REGEX_PARSE_LINE, $line, $m)) {
148 152
         if (FALSE !== strpos($m[1], "\t"))
149
-          throw new ParseError("Tabs are not supported in templates at this time");
153
+          throw new ParseError("Tabs are not supported in templates at this time");
154
+      }
150 155
         $indent = strlen($m[1]);
151 156
         $tag = isset($m[2]) ? $tag = $m[2] : "";
152 157
         $classid = isset($m[3]) ? $m[3] : "";
@@ -158,13 +163,13 @@  discard block
 block discarded – undo
158 163
         unset($m[0]);
159 164
         switch (strlen($code) ? $code[0] : ($textcode ? $textcode : "")) {
160 165
           case "|": //Control Tag
161
-            if ($code == "|snippet")
162
-              $hTag = new Tag\Snippet($text);
163
-            elseif ($code == "|form")
164
-              $hTag = new Tag\Form($text);
165
-            elseif ($code == "|formhint")
166
-              $hTag = new Tag\FormHint($text);
167
-            elseif ($code == "|else") {
166
+            if ($code == "|snippet") {
167
+                          $hTag = new Tag\Snippet($text);
168
+            } elseif ($code == "|form") {
169
+                          $hTag = new Tag\Form($text);
170
+            } elseif ($code == "|formhint") {
171
+                          $hTag = new Tag\FormHint($text);
172
+            } elseif ($code == "|else") {
168 173
               $hTag = new Tag\Control(substr($code, 1), $heir[$i - 1]);
169 174
               $hTag->setVar($text);
170 175
             } else {
@@ -175,8 +180,9 @@  discard block
 block discarded – undo
175 180
           case ":": //Filter Tag
176 181
             $hTag = new Tag\Filter(substr($code, 1));
177 182
             $hTag->addContent($text, Text::TOKEN_CODE);
178
-            foreach ($this->consumeBlock($indent) as $l)
179
-              $hTag->addContent($l, Text::TOKEN_CODE);
183
+            foreach ($this->consumeBlock($indent) as $l) {
184
+                          $hTag->addContent($l, Text::TOKEN_CODE);
185
+            }
180 186
             break;
181 187
           case "_": //String Tag
182 188
           case "__": //Unescape String Tag
@@ -187,8 +193,9 @@  discard block
 block discarded – undo
187 193
           case "//": // Non Printed Comment
188 194
             $hTag = new Tag\Comment($textcode);
189 195
             $hTag->addContent($text);
190
-            foreach ($this->consumeBlock($indent) as $l)
191
-              $hTag->addContent($l, Text::TOKEN_CODE);
196
+            foreach ($this->consumeBlock($indent) as $l) {
197
+                          $hTag->addContent($l, Text::TOKEN_CODE);
198
+            }
192 199
             break;
193 200
           default:
194 201
             $attr = array();
@@ -201,25 +208,34 @@  discard block
 block discarded – undo
201 208
             }
202 209
             $class = array(); $id = ""; $ref = "";
203 210
             preg_match_all('/[#\.!][a-zA-Z0-9\-\_]+/m', $classid, $cid);
204
-            if (isset($cid[0])) foreach ($cid[0] as $s) {
205
-              if ($s[0] == "#") $id = substr($s, 1);
206
-              if ($s[0] == ".") $class[] = substr($s, 1);
207
-              if ($s[0] == "!") $ref = substr($s, 1);
211
+            if (isset($cid[0])) {
212
+              foreach ($cid[0] as $s) {
213
+              if ($s[0] == "#") $id = substr($s, 1);
214
+            }
215
+              if ($s[0] == ".") {
216
+                $class[] = substr($s, 1);
217
+              }
218
+              if ($s[0] == "!") {
219
+                $ref = substr($s, 1);
220
+              }
208 221
             }
209
-            if($ref)
210
-              $hTag = new Tag\DynHtml($tag, $class, $attr, $id, $ref);
211
-            else
212
-              $hTag = new Tag\Html($tag, $class, $attr, $id);
222
+            if($ref) {
223
+                          $hTag = new Tag\DynHtml($tag, $class, $attr, $id, $ref);
224
+            } else {
225
+                          $hTag = new Tag\Html($tag, $class, $attr, $id);
226
+            }
213 227
             $hTag->addContent($text);
214 228
             break;
215 229
         }
216 230
         $heir[$i] = $hTag;
217
-        if ($i > 0)
218
-          $heir[$i - 1]->addChild($hTag);
219
-        else
220
-          $this->root[] = $hTag;
221
-      } else
222
-        throw new ParseError("Unable to parse line {$this->lineNo}\n\"$line\"/" . preg_last_error());
231
+        if ($i > 0) {
232
+                  $heir[$i - 1]->addChild($hTag);
233
+        } else {
234
+                  $this->root[] = $hTag;
235
+        }
236
+      } else {
237
+              throw new ParseError("Unable to parse line {$this->lineNo}\n\"$line\"/" . preg_last_error());
238
+      }
223 239
       $this->lineNo++;
224 240
     }
225 241
   }
@@ -235,8 +251,9 @@  discard block
 block discarded – undo
235 251
 
236 252
   function output($minify = false) {
237 253
     $out = "<?php\nuse Seufert\\Hamle;\n?>";
238
-    foreach ($this->root as $tag)
239
-      $out .= $tag->render(0, $minify);
254
+    foreach ($this->root as $tag) {
255
+          $out .= $tag->render(0, $minify);
256
+    }
240 257
     return $out;
241 258
 
242 259
   }
@@ -248,15 +265,18 @@  discard block
 block discarded – undo
248 265
         (!trim($this->lines[$this->lineNo + 1]) ||
249 266
             preg_match('/^(\s){' . $indent . '}((\s)+[^\s].*)$/',
250 267
                 $this->lines[$this->lineNo + 1], $m))) {
251
-      if (trim($this->lines[$this->lineNo + 1]))
252
-        $out[] = $m[2];
268
+      if (trim($this->lines[$this->lineNo + 1])) {
269
+              $out[] = $m[2];
270
+      }
253 271
       $this->lineNo++;
254 272
     }
255 273
     return $out;
256 274
   }
257 275
 
258 276
   function indentLevel($indent) {
259
-    if (!isset($this->indents)) $this->indents = array();
277
+    if (!isset($this->indents)) {
278
+      $this->indents = array();
279
+    }
260 280
     if (!count($this->indents)) {
261 281
       $this->indents = array(0 => $indent);
262 282
       // Key = indent level, Value = Depth in spaces
Please login to merge, or discard this patch.
php/hamle/Tag.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -143,11 +143,11 @@  discard block
 block discarded – undo
143 143
   function render($indent = 0, $minify = false) {
144 144
     $ind = $minify ? '' : str_pad('', $indent);
145 145
     $oneliner = (!(count($this->content) > 1 || $this->tags));
146
-    $out = $ind . $this->renderStTag() . ($oneliner || $minify ? '' : "\n");
146
+    $out = $ind.$this->renderStTag().($oneliner || $minify ? '' : "\n");
147 147
     if ($this->content) $out .= $this->renderContent($ind, $oneliner || $minify);
148 148
     foreach ($this->tags as $tag)
149 149
       $out .= $tag->render($indent + self::INDENT_SIZE, $minify);
150
-    $out .= ($minify || $oneliner ? '' : $ind) . $this->renderEnTag() . ($minify ? '' : "\n");
150
+    $out .= ($minify || $oneliner ? '' : $ind).$this->renderEnTag().($minify ? '' : "\n");
151 151
     return $out;
152 152
   }
153 153
 
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
   function renderContent($pad = "", $oneliner = false) {
162 162
     $out = "";
163 163
     foreach ($this->content as $c)
164
-      $out .= ($oneliner ? '' : $pad) . $c . ($oneliner ? '' : "\n");
164
+      $out .= ($oneliner ? '' : $pad).$c.($oneliner ? '' : "\n");
165 165
     return $out;
166 166
   }
167 167
 
Please login to merge, or discard this patch.
Braces   +33 added lines, -21 removed lines patch added patch discarded remove patch
@@ -76,9 +76,10 @@  discard block
 block discarded – undo
76 76
       }
77 77
       array_shift($path);
78 78
     }
79
-    foreach ($this->tags as $tag)
80
-      if ($found = $tag->find($path))
81
-        $list = array_merge($list, $found);
79
+    foreach ($this->tags as $tag) {
80
+          if ($found = $tag->find($path))
81
+        $list = array_merge($list, $found);
82
+    }
82 83
     return $list;
83 84
   }
84 85
 
@@ -90,7 +91,9 @@  discard block
 block discarded – undo
90 91
    */
91 92
   function replace($path, Tag $newTag) {
92 93
     if ($this->compare($path[0])) {
93
-      if (count($path) == 1) return $newTag;
94
+      if (count($path) == 1) {
95
+        return $newTag;
96
+      }
94 97
       array_shift($path);
95 98
     }
96 99
     foreach ($this->tags as $k => $tag) {
@@ -103,21 +106,25 @@  discard block
 block discarded – undo
103 106
   }
104 107
 
105 108
   function addSnipContent($contentTag, &$tagArray = array(), $key = 0) {
106
-    foreach ($this->tags as $k => $tag)
107
-      $tag->addSnipContent($contentTag, $this->tags, $k);
109
+    foreach ($this->tags as $k => $tag) {
110
+          $tag->addSnipContent($contentTag, $this->tags, $k);
111
+    }
108 112
   }
109 113
 
110 114
   function compare($tic) {
111
-    if (isset($tic['type']) && $this->type != $tic['type'])
112
-      return false;
115
+    if (isset($tic['type']) && $this->type != $tic['type']) {
116
+          return false;
117
+    }
113 118
     if (isset($tic['id']) &&
114 119
         !(isset($this->opt['id']) && $tic['id'] == $this->opt['id'])
115
-    )
116
-      return false;
120
+    ) {
121
+          return false;
122
+    }
117 123
     if (isset($tic['class']) && !(isset($this->opt['class'])
118 124
             && !array_diff($tic['class'], $this->opt['class']))
119
-    )
120
-      return false;
125
+    ) {
126
+          return false;
127
+    }
121 128
     return true;
122 129
   }
123 130
 
@@ -127,10 +134,11 @@  discard block
 block discarded – undo
127 134
    * @param string $mode Mode to add child [append|prepend]
128 135
    */
129 136
   function addChild(Tag $tag, $mode = "append") {
130
-    if ($mode == "prepend")
131
-      array_unshift($this->tags, $tag);
132
-    else
133
-      $this->tags[] = $tag;
137
+    if ($mode == "prepend") {
138
+          array_unshift($this->tags, $tag);
139
+    } else {
140
+          $this->tags[] = $tag;
141
+    }
134 142
   }
135 143
 
136 144
   /**
@@ -144,9 +152,12 @@  discard block
 block discarded – undo
144 152
     $ind = $minify ? '' : str_pad('', $indent);
145 153
     $oneliner = (!(count($this->content) > 1 || $this->tags));
146 154
     $out = $ind . $this->renderStTag() . ($oneliner || $minify ? '' : "\n");
147
-    if ($this->content) $out .= $this->renderContent($ind, $oneliner || $minify);
148
-    foreach ($this->tags as $tag)
149
-      $out .= $tag->render($indent + self::INDENT_SIZE, $minify);
155
+    if ($this->content) {
156
+      $out .= $this->renderContent($ind, $oneliner || $minify);
157
+    }
158
+    foreach ($this->tags as $tag) {
159
+          $out .= $tag->render($indent + self::INDENT_SIZE, $minify);
160
+    }
150 161
     $out .= ($minify || $oneliner ? '' : $ind) . $this->renderEnTag() . ($minify ? '' : "\n");
151 162
     return $out;
152 163
   }
@@ -160,8 +171,9 @@  discard block
 block discarded – undo
160 171
    */
161 172
   function renderContent($pad = "", $oneliner = false) {
162 173
     $out = "";
163
-    foreach ($this->content as $c)
164
-      $out .= ($oneliner ? '' : $pad) . $c . ($oneliner ? '' : "\n");
174
+    foreach ($this->content as $c) {
175
+          $out .= ($oneliner ? '' : $pad) . $c . ($oneliner ? '' : "\n");
176
+    }
165 177
     return $out;
166 178
   }
167 179
 
Please login to merge, or discard this patch.