@@ -35,7 +35,7 @@ |
||
35 | 35 | |
36 | 36 | if (!$token instanceof Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral) { |
37 | 37 | $this->validationResult->makeError( |
38 | - t('Invalid namespace token:') . ' ' . t('Expected a string.'), |
|
38 | + t('Invalid namespace token:').' '.t('Expected a string.'), |
|
39 | 39 | NamespaceInterface::VALIDATION_NAMESPACE_WRONG_TYPE |
40 | 40 | ); |
41 | 41 | return; |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | $cmd = $this->commands->createCommand( |
33 | 33 | 'ShowSnippet', |
34 | 34 | '', |
35 | - $snippetName . $paramsString, |
|
35 | + $snippetName.$paramsString, |
|
36 | 36 | sprintf('{showsnippet: %s%s', |
37 | 37 | $snippetName, |
38 | 38 | $paramsString) |
@@ -53,13 +53,13 @@ discard block |
||
53 | 53 | |
54 | 54 | if ($namespace) { |
55 | 55 | $params[] = sprintf( |
56 | - ' ' . NamespaceInterface::PARAMETER_NAMESPACE_NAME . '=%s', |
|
56 | + ' '.NamespaceInterface::PARAMETER_NAMESPACE_NAME.'=%s', |
|
57 | 57 | $this->quoteString($namespace) |
58 | 58 | ); |
59 | 59 | } |
60 | 60 | |
61 | 61 | if (!empty($params)) { |
62 | - return ' ' . implode(' ', $params); |
|
62 | + return ' '.implode(' ', $params); |
|
63 | 63 | } |
64 | 64 | |
65 | 65 | return ''; |