2020-07-22 14:34:15 +02:00
|
|
|
<?php
|
2020-09-14 13:11:46 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-09-14 13:11:46 +02:00
|
|
|
*
|
2022-06-21 11:57:17 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-09-14 13:11:46 +02:00
|
|
|
*/
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2020-07-22 14:34:15 +02:00
|
|
|
namespace Tests\Feature\PdfMaker;
|
|
|
|
|
2020-08-11 17:19:52 +02:00
|
|
|
use App\Services\PdfMaker\Designs\Utilities\DesignHelpers;
|
|
|
|
|
2020-07-22 14:34:15 +02:00
|
|
|
class ExampleDesign
|
|
|
|
{
|
2020-08-11 17:19:52 +02:00
|
|
|
use DesignHelpers;
|
|
|
|
|
|
|
|
public $client;
|
|
|
|
|
|
|
|
public $entity;
|
|
|
|
|
|
|
|
public $context;
|
|
|
|
|
2020-07-22 14:34:15 +02:00
|
|
|
public function html()
|
|
|
|
{
|
|
|
|
return file_get_contents(
|
|
|
|
base_path('tests/Feature/PdfMaker/example-design.html')
|
|
|
|
);
|
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
}
|