Skip to content

Commit 9b86728

Browse files
committed
StyleCI
1 parent ace4b1b commit 9b86728

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Illuminate/Filesystem/Filesystem.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,8 @@ public function getRequireCallable($path, array $data = [])
123123
$code = file_get_contents($path);
124124
$this->cachedCallables[$path] = function ($data) use ($code) {
125125
extract($data, EXTR_SKIP);
126-
return eval("?>" . $code);
126+
127+
return eval("?>".$code);
127128
};
128129

129130
return $this->cachedCallables[$path]($data);

0 commit comments

Comments
 (0)