invoiceninja/tests/Feature/PdfMaker/Business.php

14 lines
215 B
PHP
Raw Normal View History

<?php
namespace Tests\Feature\PdfMaker;
class Business
{
public function html()
{
return file_get_contents(
2020-07-15 18:03:54 +02:00
base_path('tests/Feature/PdfMaker/designs/business.html')
);
}
}