Typo in exception message

Added space between 'line' and line number.
This commit is contained in:
JercSi
2019-12-20 09:49:32 +01:00
committed by GitHub
parent 0137c2e7e6
commit b9b9d30144

View File

@@ -376,7 +376,7 @@ class Smarty_Internal_Templatelexer
continue; continue;
} }
} else { } else {
throw new Exception('Unexpected input at line' . $this->line . throw new Exception('Unexpected input at line ' . $this->line .
': ' . $this->data[ $this->counter ]); ': ' . $this->data[ $this->counter ]);
} }
break; break;
@@ -497,7 +497,7 @@ class Smarty_Internal_Templatelexer
continue; continue;
} }
} else { } else {
throw new Exception('Unexpected input at line' . $this->line . throw new Exception('Unexpected input at line ' . $this->line .
': ' . $this->data[ $this->counter ]); ': ' . $this->data[ $this->counter ]);
} }
break; break;
@@ -635,7 +635,7 @@ class Smarty_Internal_Templatelexer
continue; continue;
} }
} else { } else {
throw new Exception('Unexpected input at line' . $this->line . throw new Exception('Unexpected input at line ' . $this->line .
': ' . $this->data[ $this->counter ]); ': ' . $this->data[ $this->counter ]);
} }
break; break;
@@ -927,7 +927,7 @@ class Smarty_Internal_Templatelexer
continue; continue;
} }
} else { } else {
throw new Exception('Unexpected input at line' . $this->line . throw new Exception('Unexpected input at line ' . $this->line .
': ' . $this->data[ $this->counter ]); ': ' . $this->data[ $this->counter ]);
} }
break; break;
@@ -1014,7 +1014,7 @@ class Smarty_Internal_Templatelexer
continue; continue;
} }
} else { } else {
throw new Exception('Unexpected input at line' . $this->line . throw new Exception('Unexpected input at line ' . $this->line .
': ' . $this->data[ $this->counter ]); ': ' . $this->data[ $this->counter ]);
} }
break; break;
@@ -1092,4 +1092,4 @@ class Smarty_Internal_Templatelexer
} }
} }