Skip to content

Commit 1fc4284

Browse files
authored
Fixes for Travis.
1 parent ea113e8 commit 1fc4284

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Eloquent.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,24 +48,24 @@ public static function writeEloquentModelHelper(Command $command, Filesystem $fi
4848
foreach ($mixins as $m) {
4949
$mixin = $m->getContent();
5050

51-
if(isset($expectedMixins[$mixin])) {
51+
if (isset($expectedMixins[$mixin])) {
5252
$command->info('Tag Exists: @mixin ' . $mixin . ' in ' . $class);
5353

5454
$expectedMixins[$mixin] = true;
5555
}
5656
}
5757

5858
$changed = false;
59-
foreach($expectedMixins as $expectedMixin => $present) {
60-
if($present === false) {
59+
foreach ($expectedMixins as $expectedMixin => $present) {
60+
if ($present === false) {
6161
$phpdoc->appendTag(Tag::createInstance('@mixin ' . $expectedMixin, $phpdoc));
6262

6363
$changed = true;
6464
}
6565
}
6666

6767
// If nothing's changed, stop here.
68-
if(!$changed) {
68+
if (!$changed) {
6969
return;
7070
}
7171

0 commit comments

Comments
 (0)