Apply Laravel coding style

Shift automatically applies the Laravel coding style - which uses the PSR-12 coding style as a base with some minor additions.

You may customize the code style applied by configuring [Pint](https://laravel.com/docs/pint), [PHP CS Fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer), or [PHP CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer) for your project root.

For more information on customizing the code style applied by Shift, [watch this short video](https://laravelshift.com/videos/shift-code-style).
This commit is contained in:
Shift
2023-01-03 08:25:25 +00:00
parent b535aa90eb
commit 43386fd86d
357 changed files with 15021 additions and 15193 deletions

View File

@@ -2,14 +2,14 @@
return [
'cache' => [
'cache' => [
/*
|--------------------------------------------------------------------------
| Enable/Disable cell caching
|--------------------------------------------------------------------------
*/
'enable' => true,
'enable' => true,
/*
|--------------------------------------------------------------------------
@@ -22,7 +22,7 @@ return [
| memory|gzip|serialized|igbinary|discISAM|apc|memcache|temp|wincache|sqlite|sqlite3
|
*/
'driver' => 'memory',
'driver' => 'memory',
/*
|--------------------------------------------------------------------------
@@ -32,7 +32,7 @@ return [
'settings' => [
'memoryCacheSize' => '32MB',
'cacheTime' => 600,
'cacheTime' => 600,
],
@@ -54,19 +54,19 @@ return [
|--------------------------------------------------------------------------
*/
'dir' => storage_path('cache'),
'dir' => storage_path('cache'),
],
'properties' => [
'creator' => 'Maatwebsite',
'creator' => 'Maatwebsite',
'lastModifiedBy' => 'Maatwebsite',
'title' => 'Spreadsheet',
'description' => 'Default spreadsheet export',
'subject' => 'Spreadsheet export',
'keywords' => 'maatwebsite, excel, export',
'category' => 'Excel',
'manager' => 'Maatwebsite',
'company' => 'Maatwebsite',
'title' => 'Spreadsheet',
'description' => 'Default spreadsheet export',
'subject' => 'Spreadsheet export',
'keywords' => 'maatwebsite, excel, export',
'category' => 'Excel',
'manager' => 'Maatwebsite',
'company' => 'Maatwebsite',
],
/*
@@ -74,7 +74,7 @@ return [
| Sheets settings
|--------------------------------------------------------------------------
*/
'sheets' => [
'sheets' => [
/*
|--------------------------------------------------------------------------
@@ -82,18 +82,18 @@ return [
|--------------------------------------------------------------------------
*/
'pageSetup' => [
'orientation' => 'portrait',
'paperSize' => '9',
'scale' => '100',
'fitToPage' => false,
'fitToHeight' => true,
'fitToWidth' => true,
'orientation' => 'portrait',
'paperSize' => '9',
'scale' => '100',
'fitToPage' => false,
'fitToHeight' => true,
'fitToWidth' => true,
'columnsToRepeatAtLeft' => ['', ''],
'rowsToRepeatAtTop' => [0, 0],
'horizontalCentered' => false,
'verticalCentered' => false,
'printArea' => null,
'firstPageNumber' => null,
'rowsToRepeatAtTop' => [0, 0],
'horizontalCentered' => false,
'verticalCentered' => false,
'printArea' => null,
'firstPageNumber' => null,
],
],
@@ -106,9 +106,9 @@ return [
|
*/
'creator' => 'Maatwebsite',
'creator' => 'Maatwebsite',
'csv' => [
'csv' => [
/*
|--------------------------------------------------------------------------
| Delimiter
@@ -118,7 +118,7 @@ return [
|
*/
'delimiter' => ',',
'delimiter' => ',',
/*
|--------------------------------------------------------------------------
@@ -126,7 +126,7 @@ return [
|--------------------------------------------------------------------------
*/
'enclosure' => '"',
'enclosure' => '"',
/*
|--------------------------------------------------------------------------
@@ -145,7 +145,7 @@ return [
'use_bom' => false,
],
'export' => [
'export' => [
/*
|--------------------------------------------------------------------------
@@ -156,7 +156,7 @@ return [
| an array of columns ( array('A', 'B') )
|
*/
'autosize' => true,
'autosize' => true,
/*
|--------------------------------------------------------------------------
@@ -179,7 +179,7 @@ return [
| having the appropriate fonts installed.
|
*/
'autosize-method' => PHPExcel_Shared_Font::AUTOSIZE_METHOD_APPROX,
'autosize-method' => PHPExcel_Shared_Font::AUTOSIZE_METHOD_APPROX,
/*
|--------------------------------------------------------------------------
@@ -197,28 +197,28 @@ return [
| Auto set alignment on merged cells
|--------------------------------------------------------------------------
*/
'merged_cell_alignment' => 'left',
'merged_cell_alignment' => 'left',
/*
|--------------------------------------------------------------------------
| Pre-calculate formulas during export
|--------------------------------------------------------------------------
*/
'calculate' => false,
'calculate' => false,
/*
|--------------------------------------------------------------------------
| Include Charts during export
|--------------------------------------------------------------------------
*/
'includeCharts' => false,
'includeCharts' => false,
/*
|--------------------------------------------------------------------------
| Default sheet settings
|--------------------------------------------------------------------------
*/
'sheets' => [
'sheets' => [
/*
|--------------------------------------------------------------------------
@@ -232,21 +232,21 @@ return [
| Default order: array(top, right, bottom, left)
|
*/
'page_margin' => false,
'page_margin' => false,
/*
|--------------------------------------------------------------------------
| Value in source array that stands for blank cell
|--------------------------------------------------------------------------
*/
'nullValue' => null,
'nullValue' => null,
/*
|--------------------------------------------------------------------------
| Insert array starting from this cell address as the top left coordinate
|--------------------------------------------------------------------------
*/
'startCell' => 'A1',
'startCell' => 'A1',
/*
|--------------------------------------------------------------------------
@@ -262,7 +262,7 @@ return [
|--------------------------------------------------------------------------
*/
'store' => [
'store' => [
/*
|--------------------------------------------------------------------------
@@ -272,7 +272,7 @@ return [
| The path we want to save excel file to
|
*/
'path' => storage_path('exports'),
'path' => storage_path('exports'),
/*
|--------------------------------------------------------------------------
@@ -291,7 +291,7 @@ return [
| PDF Settings
|--------------------------------------------------------------------------
*/
'pdf' => [
'pdf' => [
/*
|--------------------------------------------------------------------------
@@ -299,7 +299,7 @@ return [
|--------------------------------------------------------------------------
| Supported: DomPDF, tcPDF, mPDF
*/
'driver' => 'DomPDF',
'driver' => 'DomPDF',
/*
|--------------------------------------------------------------------------
@@ -322,7 +322,7 @@ return [
| tcPDF settings
|--------------------------------------------------------------------------
*/
'tcPDF' => [
'tcPDF' => [
'path' => base_path('vendor/tecnick.com/tcpdf/'),
],
@@ -331,14 +331,14 @@ return [
| mPDF settings
|--------------------------------------------------------------------------
*/
'mPDF' => [
'mPDF' => [
'path' => base_path('vendor/mpdf/mpdf/'),
],
],
],
],
'filters' => [
'filters' => [
/*
|--------------------------------------------------------------------------
| Register read filters
@@ -355,10 +355,10 @@ return [
|--------------------------------------------------------------------------
*/
'enabled' => [],
'enabled' => [],
],
'import' => [
'import' => [
/*
|--------------------------------------------------------------------------
@@ -371,7 +371,7 @@ return [
|
*/
'heading' => 'slugged',
'heading' => 'slugged',
/*
|--------------------------------------------------------------------------
@@ -383,7 +383,7 @@ return [
|
*/
'startRow' => 1,
'startRow' => 1,
/*
|--------------------------------------------------------------------------
@@ -395,7 +395,7 @@ return [
|
*/
'separator' => '_',
'separator' => '_',
/*
|--------------------------------------------------------------------------
@@ -403,7 +403,7 @@ return [
|--------------------------------------------------------------------------
*/
'includeCharts' => false,
'includeCharts' => false,
/*
|--------------------------------------------------------------------------
@@ -415,7 +415,7 @@ return [
|
*/
'to_ascii' => true,
'to_ascii' => true,
/*
|--------------------------------------------------------------------------
@@ -423,9 +423,9 @@ return [
|--------------------------------------------------------------------------
*/
'encoding' => [
'encoding' => [
'input' => 'UTF-8',
'input' => 'UTF-8',
'output' => 'UTF-8',
],
@@ -439,7 +439,7 @@ return [
|
*/
'calculate' => true,
'calculate' => true,
/*
|--------------------------------------------------------------------------
@@ -450,7 +450,7 @@ return [
|
*/
'ignoreEmpty' => false,
'ignoreEmpty' => false,
/*
|--------------------------------------------------------------------------
@@ -474,7 +474,7 @@ return [
|
*/
'dates' => [
'dates' => [
/*
|--------------------------------------------------------------------------
@@ -491,7 +491,7 @@ return [
| If set to false, a carbon object will return
|
*/
'format' => false,
'format' => false,
/*
|--------------------------------------------------------------------------
@@ -506,7 +506,7 @@ return [
| Import sheets by config
|--------------------------------------------------------------------------
*/
'sheets' => [
'sheets' => [
/*
|--------------------------------------------------------------------------
@@ -526,7 +526,7 @@ return [
],
],
'views' => [
'views' => [
/*
|--------------------------------------------------------------------------
@@ -544,7 +544,7 @@ return [
| Table headings
|--------------------------------------------------------------------------
*/
'th' => [
'th' => [
'font' => [
'bold' => true,
'size' => 12,
@@ -568,7 +568,7 @@ return [
| Bold tags
|--------------------------------------------------------------------------
*/
'b' => [
'b' => [
'font' => [
'bold' => true,
'size' => 12,
@@ -580,10 +580,10 @@ return [
| Italic tags
|--------------------------------------------------------------------------
*/
'i' => [
'i' => [
'font' => [
'italic' => true,
'size' => 12,
'size' => 12,
],
],
@@ -592,7 +592,7 @@ return [
| Heading 1
|--------------------------------------------------------------------------
*/
'h1' => [
'h1' => [
'font' => [
'bold' => true,
'size' => 24,
@@ -604,7 +604,7 @@ return [
| Heading 2
|--------------------------------------------------------------------------
*/
'h2' => [
'h2' => [
'font' => [
'bold' => true,
'size' => 18,
@@ -616,7 +616,7 @@ return [
| Heading 2
|--------------------------------------------------------------------------
*/
'h3' => [
'h3' => [
'font' => [
'bold' => true,
'size' => 13.5,
@@ -628,7 +628,7 @@ return [
| Heading 4
|--------------------------------------------------------------------------
*/
'h4' => [
'h4' => [
'font' => [
'bold' => true,
'size' => 12,
@@ -640,7 +640,7 @@ return [
| Heading 5
|--------------------------------------------------------------------------
*/
'h5' => [
'h5' => [
'font' => [
'bold' => true,
'size' => 10,
@@ -652,7 +652,7 @@ return [
| Heading 6
|--------------------------------------------------------------------------
*/
'h6' => [
'h6' => [
'font' => [
'bold' => true,
'size' => 7.5,
@@ -664,10 +664,10 @@ return [
| Hyperlinks
|--------------------------------------------------------------------------
*/
'a' => [
'a' => [
'font' => [
'underline' => true,
'color' => ['argb' => 'FF0000FF'],
'color' => ['argb' => 'FF0000FF'],
],
],
@@ -676,7 +676,7 @@ return [
| Horizontal rules
|--------------------------------------------------------------------------
*/
'hr' => [
'hr' => [
'borders' => [
'bottom' => [
'style' => 'thin',