diff options
Diffstat (limited to 'app/Report')
33 files changed, 66 insertions, 0 deletions
diff --git a/app/Report/ReportBase.php b/app/Report/ReportBase.php index 4288d12aff..11f4304cd2 100644 --- a/app/Report/ReportBase.php +++ b/app/Report/ReportBase.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; use Fisharebest\Webtrees\I18N; diff --git a/app/Report/ReportBaseCell.php b/app/Report/ReportBaseCell.php index e78e6d627b..0459501892 100644 --- a/app/Report/ReportBaseCell.php +++ b/app/Report/ReportBaseCell.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportBaseElement.php b/app/Report/ReportBaseElement.php index b3416953bd..a02188cd52 100644 --- a/app/Report/ReportBaseElement.php +++ b/app/Report/ReportBaseElement.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportBaseFootnote.php b/app/Report/ReportBaseFootnote.php index 365865d71f..ca38203f37 100644 --- a/app/Report/ReportBaseFootnote.php +++ b/app/Report/ReportBaseFootnote.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportBaseHtml.php b/app/Report/ReportBaseHtml.php index f8e982fbd3..d179a637c4 100644 --- a/app/Report/ReportBaseHtml.php +++ b/app/Report/ReportBaseHtml.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportBaseImage.php b/app/Report/ReportBaseImage.php index 52c05cea83..fcfff944e8 100644 --- a/app/Report/ReportBaseImage.php +++ b/app/Report/ReportBaseImage.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportBaseLine.php b/app/Report/ReportBaseLine.php index 0ee7adbae8..7c286a8978 100644 --- a/app/Report/ReportBaseLine.php +++ b/app/Report/ReportBaseLine.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportBasePageheader.php b/app/Report/ReportBasePageheader.php index e5294dd7d8..c242e7333c 100644 --- a/app/Report/ReportBasePageheader.php +++ b/app/Report/ReportBasePageheader.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportBaseText.php b/app/Report/ReportBaseText.php index b7b519b075..394a266087 100644 --- a/app/Report/ReportBaseText.php +++ b/app/Report/ReportBaseText.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportBaseTextbox.php b/app/Report/ReportBaseTextbox.php index 0449682680..7979163966 100644 --- a/app/Report/ReportBaseTextbox.php +++ b/app/Report/ReportBaseTextbox.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportExpressionLanguageProvider.php b/app/Report/ReportExpressionLanguageProvider.php index 5d75e4855d..adf9ea4eaf 100644 --- a/app/Report/ReportExpressionLanguageProvider.php +++ b/app/Report/ReportExpressionLanguageProvider.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; use Symfony\Component\ExpressionLanguage\ExpressionFunction; diff --git a/app/Report/ReportHtml.php b/app/Report/ReportHtml.php index a33469a8d2..360cd8539a 100644 --- a/app/Report/ReportHtml.php +++ b/app/Report/ReportHtml.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; use Fisharebest\Webtrees\Functions\FunctionsRtl; diff --git a/app/Report/ReportHtmlCell.php b/app/Report/ReportHtmlCell.php index bf59e69eba..6b5ceb4c08 100644 --- a/app/Report/ReportHtmlCell.php +++ b/app/Report/ReportHtmlCell.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportHtmlFootnote.php b/app/Report/ReportHtmlFootnote.php index a3e760cfec..f0159b25ec 100644 --- a/app/Report/ReportHtmlFootnote.php +++ b/app/Report/ReportHtmlFootnote.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportHtmlHtml.php b/app/Report/ReportHtmlHtml.php index a547635446..824cb2a06f 100644 --- a/app/Report/ReportHtmlHtml.php +++ b/app/Report/ReportHtmlHtml.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportHtmlImage.php b/app/Report/ReportHtmlImage.php index 749a9b387c..99bdcb8ef0 100644 --- a/app/Report/ReportHtmlImage.php +++ b/app/Report/ReportHtmlImage.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportHtmlLine.php b/app/Report/ReportHtmlLine.php index 14defd1d93..edc9245c4e 100644 --- a/app/Report/ReportHtmlLine.php +++ b/app/Report/ReportHtmlLine.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportHtmlPageheader.php b/app/Report/ReportHtmlPageheader.php index 540b1017bd..d01bdaa435 100644 --- a/app/Report/ReportHtmlPageheader.php +++ b/app/Report/ReportHtmlPageheader.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportHtmlText.php b/app/Report/ReportHtmlText.php index 41506e3890..f82aed00a3 100644 --- a/app/Report/ReportHtmlText.php +++ b/app/Report/ReportHtmlText.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportHtmlTextbox.php b/app/Report/ReportHtmlTextbox.php index 438671bf3a..ddf561dd01 100644 --- a/app/Report/ReportHtmlTextbox.php +++ b/app/Report/ReportHtmlTextbox.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportParserBase.php b/app/Report/ReportParserBase.php index ee9cff67af..6918d01623 100644 --- a/app/Report/ReportParserBase.php +++ b/app/Report/ReportParserBase.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; use Fisharebest\Webtrees\Tree; diff --git a/app/Report/ReportParserGenerate.php b/app/Report/ReportParserGenerate.php index 10f7207bfa..efd99924dc 100644 --- a/app/Report/ReportParserGenerate.php +++ b/app/Report/ReportParserGenerate.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; use Fisharebest\Webtrees\Auth; diff --git a/app/Report/ReportParserSetup.php b/app/Report/ReportParserSetup.php index e0785d8475..561aaad2cf 100644 --- a/app/Report/ReportParserSetup.php +++ b/app/Report/ReportParserSetup.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; use Fisharebest\Webtrees\Auth; diff --git a/app/Report/ReportPdf.php b/app/Report/ReportPdf.php index 3f2350298e..7f7827ea0d 100644 --- a/app/Report/ReportPdf.php +++ b/app/Report/ReportPdf.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; use Fisharebest\Webtrees\Auth; diff --git a/app/Report/ReportPdfCell.php b/app/Report/ReportPdfCell.php index fbec90e9e3..737327aedb 100644 --- a/app/Report/ReportPdfCell.php +++ b/app/Report/ReportPdfCell.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; use Fisharebest\Webtrees\Functions\FunctionsRtl; diff --git a/app/Report/ReportPdfFootnote.php b/app/Report/ReportPdfFootnote.php index a4e4e3acb7..78134dc5fc 100644 --- a/app/Report/ReportPdfFootnote.php +++ b/app/Report/ReportPdfFootnote.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportPdfHtml.php b/app/Report/ReportPdfHtml.php index 099a5cfc9c..359cee22f0 100644 --- a/app/Report/ReportPdfHtml.php +++ b/app/Report/ReportPdfHtml.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportPdfImage.php b/app/Report/ReportPdfImage.php index 7aa078f354..02ad7df741 100644 --- a/app/Report/ReportPdfImage.php +++ b/app/Report/ReportPdfImage.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportPdfLine.php b/app/Report/ReportPdfLine.php index a157a87989..4f1a96676f 100644 --- a/app/Report/ReportPdfLine.php +++ b/app/Report/ReportPdfLine.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportPdfPageheader.php b/app/Report/ReportPdfPageheader.php index c3953146e9..efb0d572bb 100644 --- a/app/Report/ReportPdfPageheader.php +++ b/app/Report/ReportPdfPageheader.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportPdfText.php b/app/Report/ReportPdfText.php index cf7a17000c..4d16a03a80 100644 --- a/app/Report/ReportPdfText.php +++ b/app/Report/ReportPdfText.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; use Fisharebest\Webtrees\Functions\FunctionsRtl; diff --git a/app/Report/ReportPdfTextbox.php b/app/Report/ReportPdfTextbox.php index 75e3455deb..76bda29f53 100644 --- a/app/Report/ReportPdfTextbox.php +++ b/app/Report/ReportPdfTextbox.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; /** diff --git a/app/Report/ReportTcpdf.php b/app/Report/ReportTcpdf.php index 4fb72e78a4..a1740ae1ab 100644 --- a/app/Report/ReportTcpdf.php +++ b/app/Report/ReportTcpdf.php @@ -13,6 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +declare(strict_types=1); + namespace Fisharebest\Webtrees\Report; use TCPDF; |
