Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ef22209

Browse files
committed
Use JSON_PRETTY_PRINT available in php 5.4.
1 parent 2680f37 commit ef22209

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Illuminate/Foundation/ProviderRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ public function writeManifest($manifest)
200200
{
201201
$path = $this->manifestPath.'/services.json';
202202

203-
$this->files->put($path, json_encode($manifest));
203+
$this->files->put($path, json_encode($manifest, JSON_PRETTY_PRINT));
204204

205205
return $manifest;
206206
}

0 commit comments

Comments
 (0)