1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/tests/Feature/PdfMaker/ExampleDesign.php
2020-08-11 17:19:52 +02:00

23 lines
365 B
PHP

<?php
namespace Tests\Feature\PdfMaker;
use App\Services\PdfMaker\Designs\Utilities\DesignHelpers;
class ExampleDesign
{
use DesignHelpers;
public $client;
public $entity;
public $context;
public function html()
{
return file_get_contents(
base_path('tests/Feature/PdfMaker/example-design.html')
);
}
}