mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
14 lines
211 B
PHP
14 lines
211 B
PHP
<?php
|
|
|
|
namespace Tests\Feature\PdfMaker;
|
|
|
|
class Modern
|
|
{
|
|
public function html()
|
|
{
|
|
return file_get_contents(
|
|
base_path('tests/Feature/PdfMaker/designs/modern.html')
|
|
);
|
|
}
|
|
}
|