diff options
| author | Greg Roach <fisharebest@webtrees.net> | 2019-11-18 15:04:58 +0000 |
|---|---|---|
| committer | Greg Roach <fisharebest@webtrees.net> | 2019-11-21 19:36:35 +0000 |
| commit | b6f35a76f16ee5da672b7d3d886becc6b838498e (patch) | |
| tree | 519ee5559a2d2c88348f0eabc4e0b02e192afa26 /app/Report/ReportHtmlCell.php | |
| parent | d12d7677a80e02e389524f0147daae9eea677d09 (diff) | |
| download | webtrees-b6f35a76f16ee5da672b7d3d886becc6b838498e.tar.gz webtrees-b6f35a76f16ee5da672b7d3d886becc6b838498e.tar.bz2 webtrees-b6f35a76f16ee5da672b7d3d886becc6b838498e.zip | |
Refactor report classes
Diffstat (limited to 'app/Report/ReportHtmlCell.php')
| -rw-r--r-- | app/Report/ReportHtmlCell.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/Report/ReportHtmlCell.php b/app/Report/ReportHtmlCell.php index 7eb0446bbd..5172a4a369 100644 --- a/app/Report/ReportHtmlCell.php +++ b/app/Report/ReportHtmlCell.php @@ -19,6 +19,10 @@ declare(strict_types=1); namespace Fisharebest\Webtrees\Report; +use function str_replace; +use function stripos; +use function strpos; + /** * Class ReportHtmlCell */ @@ -27,7 +31,7 @@ class ReportHtmlCell extends ReportBaseCell /** * HTML Cell renderer * - * @param ReportHtml $renderer + * @param HtmlRenderer $renderer * * @return void */ |
