File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
1
exclude_paths :
2
- - ' tests/*'
2
+ - ' *.md'
3
+ - ' **/tests/**'
Original file line number Diff line number Diff line change 17
17
php-version : ${{ matrix.php-versions }}
18
18
extensions : mbstring, intl, zip
19
19
coverage : xdebug
20
- pecl : false
21
20
22
21
- name : Get Composer Cache Directory
23
22
id : composer-cache
Original file line number Diff line number Diff line change 8
8
use Exception ;
9
9
use GuzzleHttp \ClientInterface ;
10
10
use Illuminate \Support \Facades \File ;
11
+ use SplFileInfo ;
11
12
use Symfony \Component \Finder \Finder ;
12
13
13
14
/**
@@ -85,7 +86,7 @@ protected function hasCorrectPermissionForUpdate(): bool
85
86
throw new Exception ('No directory set for update. Please set the update with: setPathToUpdate(path). ' );
86
87
}
87
88
88
- $ collection = collect ($ this ->pathToUpdate ->files ())->each (function ($ file ) { /* @var \ SplFileInfo $file */
89
+ collect ($ this ->pathToUpdate ->files ())->each (function ($ file ) { /* @var SplFileInfo $file */
89
90
if (! File::isWritable ($ file ->getRealPath ())) {
90
91
event (new HasWrongPermissions ($ this ));
91
92
You can’t perform that action at this time.
0 commit comments