File tree 2 files changed +8
-8
lines changed
2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -53,20 +53,20 @@ public function fire()
53
53
// Set up a migration location artisan can use
54
54
$ migrationLocation = str_replace (base_path () .'/ ' , '' , $ syntaxDirectory . $ migrationDirectory );
55
55
56
- $ this ->info ('Running ' . $ package .' migrations... ' );
56
+ $ this ->comment ('Running ' . $ package .' migrations... ' );
57
57
58
58
// Run the migrations
59
59
Artisan::call ('migrate ' , array ('--path ' => $ migrationLocation ), new StreamOutput ($ stream ));
60
60
61
- $ this ->info (ucwords ($ package ) .' migrations complete! ' );
61
+ $ this ->comment (ucwords ($ package ) .' migrations complete! ' );
62
62
}
63
63
64
64
// Handle the seeds
65
65
if (File::exists ($ syntaxDirectory . $ seedDirectory )) {
66
66
$ seeds = File::files ($ syntaxDirectory . $ seedDirectory );
67
67
68
68
if (count ($ seeds ) > 0 ) {
69
- $ this ->info ('Running ' . $ package .' seeds... ' );
69
+ $ this ->comment ('Running ' . $ package .' seeds... ' );
70
70
71
71
foreach ($ seeds as $ seed ) {
72
72
$ seeder = explode ('/ ' , $ seed );
@@ -85,11 +85,11 @@ public function fire()
85
85
$ newSeed ->name = $ seeder ;
86
86
$ newSeed ->save ();
87
87
88
- $ this ->info (ucwords ($ package ) .' ' . $ seeder .' seeded! ' );
88
+ $ this ->comment (ucwords ($ package ) .' ' . $ seeder .' seeded! ' );
89
89
}
90
90
}
91
91
92
- $ this ->info (ucwords ($ package ) .' seeds complete! ' );
92
+ $ this ->comment (ucwords ($ package ) .' seeds complete! ' );
93
93
}
94
94
}
95
95
}
Original file line number Diff line number Diff line change @@ -42,11 +42,11 @@ public function fire()
42
42
$ ignoredFiles = file (base_path ('.gitignore ' ));
43
43
44
44
if (!in_array ('/node_modules ' , $ ignoredFiles )) {
45
- $ this ->info ('Adding node_modules directory to .gitignore ' );
45
+ $ this ->comment ('Adding node_modules directory to .gitignore ' );
46
46
File::append (base_path ('.gitignore ' ), "/node_modules " );
47
47
}
48
48
49
- $ this ->info ('Adding all the gulp plugins... ' );
49
+ $ this ->comment ('Adding all the gulp plugins... ' );
50
50
$ rootDirectory = Config::get ('remote.connections.default.root ' );
51
51
52
52
$ commands = [
@@ -58,7 +58,7 @@ public function fire()
58
58
echo $ line .PHP_EOL ;
59
59
});
60
60
61
- $ this ->info ('Finished adding gulp plugins. ' );
61
+ $ this ->comment ('Finished adding gulp plugins. ' );
62
62
}
63
63
64
64
/**
You can’t perform that action at this time.
0 commit comments