mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
32 lines
626 B
PHP
32 lines
626 B
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
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')
|
|
);
|
|
}
|
|
}
|