@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | */ |
12 | 12 | function get($name) |
13 | 13 | { |
14 | - return get_template_directory_uri() . '/dist/images/' . $name; |
|
14 | + return get_template_directory_uri().'/dist/images/'.$name; |
|
15 | 15 | } |
16 | 16 | |
17 | 17 | /** |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | if (strpos($imageUrl, '.svg') !== false) { |
36 | 36 | return file_get_contents($imageUrl, false, stream_context_create($stream_opts)); |
37 | 37 | } else { |
38 | - return "<img src='" . $this->get($name) . "' />"; |
|
38 | + return "<img src='".$this->get($name)."' />"; |
|
39 | 39 | } |
40 | 40 | } |
41 | 41 | } |