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 @@ -935,14 +935,14 @@ protected function createPhpDocs($class)
935
935
936
936
// remove the already existing tag to prevent duplicates
937
937
foreach ($ phpdoc ->getTagsByName ('mixin ' ) as $ tag ) {
938
- if ($ tag ->getContent () === $ eloquentClassNameInModel ) {
938
+ if ($ tag ->getContent () === $ eloquentClassNameInModel ) {
939
939
$ phpdoc ->deleteTag ($ tag );
940
940
}
941
941
}
942
942
943
943
$ phpdoc ->appendTag (Tag::createInstance ('@mixin ' . $ eloquentClassNameInModel , $ phpdoc ));
944
944
}
945
-
945
+
946
946
if ($ this ->phpstorm_noinspections ) {
947
947
/**
948
948
* Facades, Eloquent API
You can’t perform that action at this time.
0 commit comments