diff --git a/app/Helpers/Generic.php b/app/Helpers/Generic.php index ef29f83a1195..ecec44c2da15 100644 --- a/app/Helpers/Generic.php +++ b/app/Helpers/Generic.php @@ -13,11 +13,11 @@ /** * Simple helper function that will log into "invoiceninja.log" file * only when extended logging is enabled. - * - * @param mixed $output - * @param array $context * - * @return void + * @param mixed $output + * @param array $context + * + * @return void */ function nlog($output, $context = []): void { diff --git a/app/Utils/Helpers.php b/app/Utils/Helpers.php index f2fa72b30fe7..ae82fca7903d 100644 --- a/app/Utils/Helpers.php +++ b/app/Utils/Helpers.php @@ -41,13 +41,13 @@ class Helpers /** * A centralised method to format the custom fields content. - * + * * @param mixed|null $custom_fields - * @param mixed $field - * @param mixed $value - * @param \App\Models\Client|null $client - * - * @return null|string + * @param mixed $field + * @param mixed $value + * @param \App\Models\Client|null $client + * + * @return null|string */ public function formatCustomFieldValue($custom_fields = null, $field, $value, Client $client = null): ?string { @@ -79,10 +79,10 @@ class Helpers /** * A centralised method to make custom field. - * @param mixed|null $custom_fields - * @param mixed $field - * - * @return string + * @param mixed|null $custom_fields + * @param mixed $field + * + * @return string */ public function makeCustomField($custom_fields = null, $field): string { diff --git a/config/logging.php b/config/logging.php index ffc7bebb68c4..fc8e2966252f 100644 --- a/config/logging.php +++ b/config/logging.php @@ -102,7 +102,7 @@ return [ 'invoiceninja' => [ 'driver' => 'single', - 'path' => storage_path('logs/invoiceninja.log'), + 'path' => storage_path('logs/invoiceninja.log'), ], ], diff --git a/tests/Feature/Import/ImportCsvTest.php b/tests/Feature/Import/ImportCsvTest.php index c2804bc8607c..d024bb54f169 100644 --- a/tests/Feature/Import/ImportCsvTest.php +++ b/tests/Feature/Import/ImportCsvTest.php @@ -56,7 +56,7 @@ class ImportCsvTest extends TestCase public function testInvoiceCsvImport() { - $this->markTestSkipped(); + $this->markTestSkipped(); $csv = file_get_contents(base_path().'/tests/Feature/Import/invoice.csv'); $hash = Str::random(32); @@ -132,7 +132,7 @@ class ImportCsvTest extends TestCase public function testProductCsvImport() { - $this->markTestSkipped(); + $this->markTestSkipped(); $csv = file_get_contents(base_path().'/tests/Feature/Import/products.csv');