Massive PHPCS linting

This commit is contained in:
Dane Everitt 2017-08-21 22:10:48 -05:00
parent 78c8b8d8ea
commit 3ee5803416
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
346 changed files with 834 additions and 1424 deletions

View file

@ -34,8 +34,6 @@ class AppServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
@ -49,8 +47,6 @@ class AppServiceProvider extends ServiceProvider
/**
* Register any application services.
*
* @return void
*/
public function register()
{

View file

@ -19,8 +19,7 @@ class AuthServiceProvider extends ServiceProvider
/**
* Register any application authentication / authorization services.
*
* @param \Illuminate\Contracts\Auth\Access\Gate $gate
* @return void
* @param \Illuminate\Contracts\Auth\Access\Gate $gate
*/
public function boot()
{

View file

@ -9,8 +9,6 @@ class BroadcastServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{

View file

@ -16,8 +16,6 @@ class EventServiceProvider extends ServiceProvider
/**
* Register any other events for your application.
*
* @return void
*/
public function boot()
{

View file

@ -36,8 +36,6 @@ class MacroServiceProvider extends ServiceProvider
{
/**
* Bootstrap the application services.
*
* @return void
*/
public function boot()
{
@ -48,7 +46,7 @@ class MacroServiceProvider extends ServiceProvider
$i = 0;
while (($size / 1024) > 0.9) {
$size = $size / 1024;
$i++;
++$i;
}
return round($size, ($i < 2) ? 0 : $precision) . ' ' . $units[$i];

View file

@ -32,8 +32,6 @@ class PhraseAppTranslationProvider extends TranslationServiceProvider
{
/**
* Register the service provider.
*
* @return void
*/
public function register()
{

View file

@ -19,8 +19,6 @@ class RouteServiceProvider extends ServiceProvider
/**
* Define your route model bindings, pattern filters, etc.
*
* @return void
*/
public function boot()
{
@ -29,8 +27,6 @@ class RouteServiceProvider extends ServiceProvider
/**
* Define the routes for the application.
*
* @return void
*/
public function map()
{