Skip to content

Commit 01750a7

Browse files
barryvdhlaravel-ide-helper
authored andcommitted
Use dev instead of stable (barryvdh#1409)
* Update run-integration-tests.yml * composer fix-style * Update run-integration-tests.yml Co-authored-by: laravel-ide-helper <[email protected]>
1 parent 78ba56e commit 01750a7

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/run-integration-tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ jobs:
3737
run: |
3838
composer create-project --prefer-dist laravel/lumen:${{ matrix.lumen }} --no-progress sample
3939
cd sample
40+
composer config minimum-stability dev
4041
composer require "league/flysystem:^1" --no-update --no-progress
4142
composer update --prefer-stable --prefer-dist --no-progress
4243
@@ -105,6 +106,7 @@ jobs:
105106
run: |
106107
composer create-project --prefer-dist laravel/laravel:${{ matrix.laravel }} --no-progress sample
107108
cd sample
109+
composer config minimum-stability dev
108110
composer update --prefer-stable --prefer-dist --no-progress
109111
110112
- name: Add package from source

src/Console/ModelsCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -946,14 +946,14 @@ protected function createPhpDocs($class)
946946

947947
// remove the already existing tag to prevent duplicates
948948
foreach ($phpdoc->getTagsByName('mixin') as $tag) {
949-
if($tag->getContent() === $eloquentClassNameInModel) {
949+
if ($tag->getContent() === $eloquentClassNameInModel) {
950950
$phpdoc->deleteTag($tag);
951951
}
952952
}
953953

954954
$phpdoc->appendTag(Tag::createInstance('@mixin ' . $eloquentClassNameInModel, $phpdoc));
955955
}
956-
956+
957957
if ($this->phpstorm_noinspections) {
958958
/**
959959
* Facades, Eloquent API

0 commit comments

Comments
 (0)