mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-23 20:00:33 -04:00
14 lines
207 B
PHP
14 lines
207 B
PHP
<?php
|
|
|
|
namespace Tests\Feature\PdfMaker;
|
|
|
|
class Business
|
|
{
|
|
public function html()
|
|
{
|
|
return file_get_contents(
|
|
base_path('tests/Feature/PdfMaker/business.html')
|
|
);
|
|
}
|
|
}
|