Skip to content

Commit 45a9492

Browse files
committed
Merge branch 'develop'
2 parents 47777bc + b675571 commit 45a9492

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@
1919
}
2020
],
2121
"require": {
22-
"php": ">=7.0"
22+
"php": ">=7.0",
23+
"illuminate/contracts": "~5.3.0|~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
24+
"illuminate/console": "~5.3.0|~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
25+
"illuminate/support": "~5.3.0|~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0"
2326
},
2427
"autoload": {
2528
"psr-4": {

src/Console/stubs/repository.model.stub

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ class DummyClass extends Repository {
2020
* @param \DummyFullModelClass $DummyModelVariable
2121
* @return void
2222
*/
23-
public function __construct(DummyModelClass $DummyModelVariable) {}
23+
public function __construct(DummyModelClass $DummyModelVariable) {
24+
$ths->DummyModelVariable = $DummyModelVariable;
25+
}
2426

2527
/**
2628
* Get all of the models from the database.

0 commit comments

Comments
 (0)