Fix some spelling errors.

This commit is contained in:
James Cole
2017-12-19 18:53:50 +01:00
parent 9ede6755c5
commit e21e339cb0
11 changed files with 45 additions and 40 deletions

View File

@@ -88,7 +88,7 @@ class ReportController extends Controller
}
/**
* Shows income and expense, debet/credit: operations.
* Shows income and expense, debit/credit: operations.
*
* @param Collection $accounts
* @param Carbon $start
@@ -143,7 +143,7 @@ class ReportController extends Controller
}
/**
* Shows sum income and expense, debet/credit: operations.
* Shows sum income and expense, debit/credit: operations.
*
* @param Carbon $start
* @param Carbon $end

View File

@@ -102,7 +102,7 @@ class HomeController extends Controller
*/
public function displayDebug(Request $request)
{
$phpVersion = PHP_VERSION;
$phpVersion = str_replace('~','\~',PHP_VERSION);
$phpOs = php_uname();
$interface = PHP_SAPI;
$now = Carbon::create()->format('Y-m-d H:i:s e');