Skip to content
Snippets Groups Projects
Commit 43028a7b authored by Jonathan Foucher's avatar Jonathan Foucher
Browse files

cs-fix

parent 031ab5ca
No related branches found
Tags v0.1.13
No related merge requests found
Pipeline #29734 passed
......@@ -7,7 +7,7 @@ class SVG
private $score;
private $maxScore;
private $unit;
const UNITS = 414;
public const UNITS = 414;
public function __construct($score, $maxScore)
{
......@@ -31,7 +31,7 @@ private function oneHalf()
return $this->maxScore / 2;
}
private function calculateArray() : array
private function calculateArray(): array
{
$dashArray = [0, 0, 0, 0];
......@@ -48,7 +48,7 @@ private function calculateArray() : array
return $dashArray;
}
private function calculateFirstQuarter() : array
private function calculateFirstQuarter(): array
{
return [
0,
......@@ -58,7 +58,7 @@ private function calculateFirstQuarter() : array
];
}
private function calculateSecondQuarter() : array
private function calculateSecondQuarter(): array
{
return [
($this->threeQuarters() * $this->unit) - $this->secondStroke(),
......@@ -68,7 +68,7 @@ private function calculateSecondQuarter() : array
];
}
private function calculateSecondHalf() : array
private function calculateSecondHalf(): array
{
return [
($this->threeQuarters() * $this->unit) - $this->secondStroke(),
......@@ -83,7 +83,7 @@ private function secondStroke()
return ($this->maxScore - $this->score) * $this->unit;
}
public function dashArray() : string
public function dashArray(): string
{
$dashArray = $this->calculateArray();
......
......@@ -31,7 +31,7 @@ public function ActionPlanPdf()
->first();
$collectionAction = collect($evaluation->measureLevels)->filter(function (MeasureLevel $ml) {
return $ml->expected_level !== null;
return null !== $ml->expected_level;
});
$actionSorted = $collectionAction->sortBy('end_date');
$actionSorted = $actionSorted->values()->all();
......@@ -56,7 +56,7 @@ public function ActionPlanPdf()
//
// // dd($pdf->getDomPDF());
//return $pdf->stream("Plan d'action - " . date('Y-m-d') . '.pdf');
// return $pdf->stream("Plan d'action - " . date('Y-m-d') . '.pdf');
$pdf = App::make('snappy.pdf.wrapper');
$pdf->loadView('pdf.planAction', $data);
$pdf->setOption('header-html', view('pdf.header', $data));
......@@ -71,7 +71,7 @@ public function ActionPlanPdf()
$pdf->setOption('margin-left', '0');
$pdf->setOption('xsl-style-sheet', view('pdf.toc', $data));
$filename = "action_plan" . date('Y-m-d') . '.pdf';
$filename = 'action_plan' . date('Y-m-d') . '.pdf';
if (file_exists(storage_path('app/action_plan/tmp.pdf'))) {
unlink(storage_path('app/action_plan/tmp.pdf'));
......@@ -79,16 +79,15 @@ public function ActionPlanPdf()
$pdf->save(storage_path('app/action_plan/tmp.pdf'));
// Add measure documents to end of PDF file
$measureDocs = collect($actionSorted)->filter(function(MeasureLevel $ml) {
return $ml->measure->{'level'.$ml->expected_level.'_file'} !== null;
})->map(function(MeasureLevel $ml) {
$url = $ml->measure->{'level'.$ml->expected_level.'_file'};
$measureDocs = collect($actionSorted)->filter(function (MeasureLevel $ml) {
return null !== $ml->measure->{'level' . $ml->expected_level . '_file'};
})->map(function (MeasureLevel $ml) {
$url = $ml->measure->{'level' . $ml->expected_level . '_file'};
return str_replace('/storage/', storage_path('app/public/'), $url);
})->join('" "');
exec('gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile="'.storage_path('app/action_plan/'.$filename).'" "'.storage_path('app/action_plan/tmp.pdf').'" "' . $measureDocs.'"');
exec('gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile="' . storage_path('app/action_plan/' . $filename) . '" "' . storage_path('app/action_plan/tmp.pdf') . '" "' . $measureDocs . '"');
return Storage::download('action_plan/' . $filename, "Plan d'actions - " . date('Y-m-d') . '.pdf');
}
......
<?php
return [
/*
|--------------------------------------------------------------------------
| Snappy PDF / Image Configuration
......@@ -10,15 +9,15 @@
| This option contains settings for PDF generation.
|
| Enabled:
|
|
| Whether to load PDF / Image generation.
|
| Binary:
|
|
| The file path of the wkhtmltopdf / wkhtmltoimage executable.
|
| Timout:
|
|
| The amount of time to wait (in seconds) before PDF / Image generation is stopped.
| Setting this to false disables the timeout (unlimited processing time).
|
......@@ -32,21 +31,20 @@
| The environment variables to set while running the wkhtmltopdf process.
|
*/
'pdf' => [
'enabled' => true,
'binary' => env('WKHTML_PDF_BINARY', '/usr/local/bin/wkhtmltopdf'),
'binary' => env('WKHTML_PDF_BINARY', '/usr/local/bin/wkhtmltopdf'),
'timeout' => false,
'options' => [],
'env' => [],
'env' => [],
],
'image' => [
'enabled' => true,
'binary' => env('WKHTML_IMG_BINARY', '/usr/local/bin/wkhtmltoimage'),
'binary' => env('WKHTML_IMG_BINARY', '/usr/local/bin/wkhtmltoimage'),
'timeout' => false,
'options' => [],
'env' => [],
'env' => [],
],
];
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment