Skip to content

Commit b557692

Browse files
barryvdhlaravel-ide-helper
andauthored
Use dev instead of stable (#1409)
* Update run-integration-tests.yml * composer fix-style * Update run-integration-tests.yml Co-authored-by: laravel-ide-helper <laravel-ide-helper@users.noreply.github.com>
1 parent f055d42 commit b557692

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
@@ -935,14 +935,14 @@ protected function createPhpDocs($class)
935935

936936
// remove the already existing tag to prevent duplicates
937937
foreach ($phpdoc->getTagsByName('mixin') as $tag) {
938-
if($tag->getContent() === $eloquentClassNameInModel) {
938+
if ($tag->getContent() === $eloquentClassNameInModel) {
939939
$phpdoc->deleteTag($tag);
940940
}
941941
}
942942

943943
$phpdoc->appendTag(Tag::createInstance('@mixin ' . $eloquentClassNameInModel, $phpdoc));
944944
}
945-
945+
946946
if ($this->phpstorm_noinspections) {
947947
/**
948948
* Facades, Eloquent API

0 commit comments

Comments
 (0)