Skip to content

Commit 48b9b80

Browse files
committed
remove exclamations
1 parent 1355f4f commit 48b9b80

15 files changed

+16
-16
lines changed

src/Illuminate/Cache/Console/CacheTableCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public function handle()
6969

7070
$this->files->put($fullPath, $this->files->get(__DIR__.'/stubs/cache.stub'));
7171

72-
$this->info('Migration created successfully!');
72+
$this->info('Migration created successfully.');
7373

7474
$this->composer->dumpAutoloads();
7575
}

src/Illuminate/Foundation/Console/ConfigCacheCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public function handle()
8080
throw new LogicException('Your configuration files are not serializable.', 0, $e);
8181
}
8282

83-
$this->info('Configuration cached successfully!');
83+
$this->info('Configuration cached successfully.');
8484
}
8585

8686
/**

src/Illuminate/Foundation/Console/EventCacheCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function handle()
4444
'<?php return '.var_export($this->getEvents(), true).';'
4545
);
4646

47-
$this->info('Events cached successfully!');
47+
$this->info('Events cached successfully.');
4848
}
4949

5050
/**

src/Illuminate/Foundation/Console/EventGenerateCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public function handle()
4545
}
4646
}
4747

48-
$this->info('Events and listeners generated successfully!');
48+
$this->info('Events and listeners generated successfully.');
4949
}
5050

5151
/**

src/Illuminate/Foundation/Console/OptimizeClearCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@ public function handle()
4343
$this->call('config:clear');
4444
$this->call('clear-compiled');
4545

46-
$this->info('Caches cleared successfully!');
46+
$this->info('Caches cleared successfully.');
4747
}
4848
}

src/Illuminate/Foundation/Console/OptimizeCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ public function handle()
3939
$this->call('config:cache');
4040
$this->call('route:cache');
4141

42-
$this->info('Files cached successfully!');
42+
$this->info('Files cached successfully.');
4343
}
4444
}

src/Illuminate/Foundation/Console/RouteCacheCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public function handle()
7575
$this->laravel->getCachedRoutesPath(), $this->buildRouteCacheFile($routes)
7676
);
7777

78-
$this->info('Routes cached successfully!');
78+
$this->info('Routes cached successfully.');
7979
}
8080

8181
/**

src/Illuminate/Foundation/Console/ViewCacheCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public function handle()
4545
$this->compileViews($this->bladeFilesIn([$path]));
4646
});
4747

48-
$this->info('Blade templates cached successfully!');
48+
$this->info('Blade templates cached successfully.');
4949
}
5050

5151
/**

src/Illuminate/Notifications/Console/NotificationTableCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public function handle()
6969

7070
$this->files->put($fullPath, $this->files->get(__DIR__.'/stubs/notifications.stub'));
7171

72-
$this->info('Migration created successfully!');
72+
$this->info('Migration created successfully.');
7373

7474
$this->composer->dumpAutoloads();
7575
}

src/Illuminate/Queue/Console/BatchesTableCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public function handle()
7171
$this->createBaseMigration($table), $table
7272
);
7373

74-
$this->info('Migration created successfully!');
74+
$this->info('Migration created successfully.');
7575

7676
$this->composer->dumpAutoloads();
7777
}

0 commit comments

Comments
 (0)