File tree Expand file tree Collapse file tree
src/Illuminate/Foundation Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -839,7 +839,7 @@ public function readyForResponses()
839839 */
840840 public function isDownForMaintenance ()
841841 {
842- return file_exists ($ this ['path.storage ' ].'/meta /down ' );
842+ return file_exists ($ this ['config ' ][ ' app.manifest ' ].'/down ' );
843843 }
844844
845845 /**
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ public function fire()
3030 @unlink ($ path );
3131 }
3232
33- if (file_exists ($ path = $ this ->laravel ['path.storage ' ].'/meta /services.json ' ))
33+ if (file_exists ($ path = $ this ->laravel ['config ' ][ ' app.manifest ' ].'/services.json ' ))
3434 {
3535 @unlink ($ path );
3636 }
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ class DownCommand extends Command {
2525 */
2626 public function fire ()
2727 {
28- touch ($ this ->laravel ['path.storage ' ].'/meta /down ' );
28+ touch ($ this ->laravel ['config ' ][ ' app.manifest ' ].'/down ' );
2929
3030 $ this ->comment ('Application is now in maintenance mode. ' );
3131 }
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ class UpCommand extends Command {
2525 */
2626 public function fire ()
2727 {
28- @unlink ($ this ->laravel ['path.storage ' ].'/meta /down ' );
28+ @unlink ($ this ->laravel ['config ' ][ ' app.manifest ' ].'/down ' );
2929
3030 $ this ->info ('Application is now live. ' );
3131 }
You can’t perform that action at this time.
0 commit comments