mirror of
https://github.com/janunger/rheinwerk-video-training.git
synced 2025-07-15 02:23:30 +02:00
17 lines
256 B
PHP
17 lines
256 B
PHP
<?php
|
|
|
|
namespace MeineApp;
|
|
|
|
class PdfGenerator
|
|
{
|
|
public function sendePdf()
|
|
{
|
|
$pdf = new \FPDF();
|
|
|
|
$pdf->AddPage();
|
|
$pdf->SetFont('Arial', 'B', 16);
|
|
$pdf->Cell(40, 10, 'Hallo Welt!');
|
|
|
|
$pdf->Output();
|
|
}
|
|
} |