Code style updates.

This commit is contained in:
Justin Hileman
2012-01-08 16:29:58 -08:00
parent e5f3a059ab
commit 236ba060ca
2 changed files with 54 additions and 54 deletions
+1 -4
View File
@@ -819,10 +819,7 @@ class Mustache {
* @return string
*/
protected function _getPartial($tag_name) {
if (
(is_array($this->_partials) || $this->_partials instanceof ArrayAccess)
&& isset($this->_partials[$tag_name])
) {
if ((is_array($this->_partials) || $this->_partials instanceof ArrayAccess) && isset($this->_partials[$tag_name])) {
return $this->_partials[$tag_name];
}