Skip to content

Commit

Permalink
Added storage to ignore list
Browse files Browse the repository at this point in the history
  • Loading branch information
Sammyjo20 committed Aug 31, 2020
1 parent f6c934c commit ccf0246
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/Services/BundleManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,16 @@ final class BundleManager
protected $forbidden_files = [
'.htaccess',
'index.php',
'robots.txt'
'robots.txt',
'storage'
];

/**
* @var array
*/
protected $forbidden_directories = [];
protected $forbidden_directories = [
'storage'
];

/**
* @var Filesystem
Expand Down

0 comments on commit ccf0246

Please sign in to comment.