1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 21:22:58 +01:00
invoiceninja/tests/Feature/PdfMaker/Business.php
2020-07-09 16:05:17 +02:00

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')
);
}
}