mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-11-01 03:57:31 -04:00
14 lines
213 B
PHP
14 lines
213 B
PHP
<?php
|
|
|
|
namespace Tests\Feature\PdfMaker;
|
|
|
|
class Elegant
|
|
{
|
|
public function html()
|
|
{
|
|
return file_get_contents(
|
|
base_path('tests/Feature/PdfMaker/designs/elegant.html')
|
|
);
|
|
}
|
|
}
|