diff --git a/api-payroll/src/routes.php b/api-payroll/src/routes.php index 9363ec6..00d1592 100644 --- a/api-payroll/src/routes.php +++ b/api-payroll/src/routes.php @@ -11,4 +11,4 @@ $app->get('/[{name}]', function (Request $request, Response $response, array $ar // Render index view return $this->renderer->render($response, 'index.phtml', $args); -}); +}); \ No newline at end of file diff --git a/api-payroll/src/service/cryptography.php b/api-payroll/src/service/cryptography.php index ef47199..6183ddd 100644 --- a/api-payroll/src/service/cryptography.php +++ b/api-payroll/src/service/cryptography.php @@ -33,7 +33,7 @@ class cryptographyService{ return "$ivInHex$hexedCipherText"; } catch (Exception $e) { - throw new Exception('here was an error encrypting the string, contact the system administrator.'); + throw new Exception('There was an error encrypting the string, contact the system administrator.'); $this->logger->warning("There was an error in the cryptographyService->encryptString caused by: $e "); } }