Add newline to files

This commit is contained in:
James Cole
2019-08-17 12:09:03 +02:00
parent b53cbbe469
commit fc78c32fca
153 changed files with 243 additions and 125 deletions

View File

@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* CreateController.php
* Copyright (c) 2019 thegrumpydictator@gmail.com
@@ -100,4 +101,4 @@ class CreateController extends Controller
return $redirect;
}
}
}

View File

@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* DeleteController.php
* Copyright (c) 2019 thegrumpydictator@gmail.com
@@ -89,4 +90,4 @@ class DeleteController extends Controller
return redirect($this->getPreviousUri('categories.delete.uri'));
}
}
}

View File

@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* EditController.php
* Copyright (c) 2019 thegrumpydictator@gmail.com
@@ -106,4 +107,4 @@ class EditController extends Controller
return $redirect;
}
}
}

View File

@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* IndexController.php
* Copyright (c) 2019 thegrumpydictator@gmail.com
@@ -86,4 +87,4 @@ class IndexController extends Controller
return view('categories.index', compact('categories'));
}
}
}