@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | { |
54 | 54 | $path = static::path($filename); |
55 | 55 | |
56 | - if (! file_exists($path)) { |
|
56 | + if (!file_exists($path)) { |
|
57 | 57 | return $default; |
58 | 58 | } |
59 | 59 | |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | { |
72 | 72 | $path = static::path(basename($filename, '.html').'.html'); |
73 | 73 | |
74 | - if (! file_exists($path)) { |
|
74 | + if (!file_exists($path)) { |
|
75 | 75 | return $default === null ? null : $default; |
76 | 76 | } |
77 | 77 | |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | { |
90 | 90 | $path = static::path(basename($filename, '.md').'.md'); |
91 | 91 | |
92 | - if (! file_exists($path)) { |
|
92 | + if (!file_exists($path)) { |
|
93 | 93 | return $default === null ? null : Markdown::render($default); |
94 | 94 | } |
95 | 95 | |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | { |
108 | 108 | $path = static::path(basename($filename, '.blade.php').'.blade.php'); |
109 | 109 | |
110 | - if (! file_exists($path)) { |
|
110 | + if (!file_exists($path)) { |
|
111 | 111 | return $default === null ? null : Blade::render($default); |
112 | 112 | } |
113 | 113 |