Subiendo proyecto completo sin restricciones de git ignore
This commit is contained in:
29
vendor/spatie/ignition/src/ErrorPage/Renderer.php
vendored
Normal file
29
vendor/spatie/ignition/src/ErrorPage/Renderer.php
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
namespace Spatie\Ignition\ErrorPage;
|
||||
|
||||
class Renderer
|
||||
{
|
||||
/**
|
||||
* @param array<string, mixed> $data
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function render(array $data, string $viewPath): void
|
||||
{
|
||||
$viewFile = $viewPath;
|
||||
|
||||
extract($data, EXTR_OVERWRITE);
|
||||
|
||||
include $viewFile;
|
||||
}
|
||||
|
||||
public function renderAsString(array $date, string $viewPath): string
|
||||
{
|
||||
ob_start();
|
||||
|
||||
$this->render($date, $viewPath);
|
||||
|
||||
return ob_get_clean();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user