File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 37
37
run : |
38
38
composer create-project --prefer-dist laravel/lumen:${{ matrix.lumen }} --no-progress sample
39
39
cd sample
40
+ composer config minimum-stability dev
40
41
composer require "league/flysystem:^1" --no-update --no-progress
41
42
composer update --prefer-stable --prefer-dist --no-progress
42
43
@@ -105,6 +106,7 @@ jobs:
105
106
run : |
106
107
composer create-project --prefer-dist laravel/laravel:${{ matrix.laravel }} --no-progress sample
107
108
cd sample
109
+ composer config minimum-stability dev
108
110
composer update --prefer-stable --prefer-dist --no-progress
109
111
110
112
- name : Add package from source
Original file line number Diff line number Diff line change @@ -946,14 +946,14 @@ protected function createPhpDocs($class)
946
946
947
947
// remove the already existing tag to prevent duplicates
948
948
foreach ($ phpdoc ->getTagsByName ('mixin ' ) as $ tag ) {
949
- if ($ tag ->getContent () === $ eloquentClassNameInModel ) {
949
+ if ($ tag ->getContent () === $ eloquentClassNameInModel ) {
950
950
$ phpdoc ->deleteTag ($ tag );
951
951
}
952
952
}
953
953
954
954
$ phpdoc ->appendTag (Tag::createInstance ('@mixin ' . $ eloquentClassNameInModel , $ phpdoc ));
955
955
}
956
-
956
+
957
957
if ($ this ->phpstorm_noinspections ) {
958
958
/**
959
959
* Facades, Eloquent API
You can’t perform that action at this time.
0 commit comments