Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
339 changes: 0 additions & 339 deletions LICENSE

This file was deleted.

674 changes: 674 additions & 0 deletions LICENSE.md

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion application/clicommands/DownloadCommand.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

/* Icinga Reporting | (c) 2023 Icinga GmbH | GPLv2 */
// SPDX-FileCopyrightText: 2022 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting\Clicommands;

Expand Down Expand Up @@ -52,7 +53,7 @@
/** @var Model\Report $report */
$report = Model\Report::on(Database::get())
->with('timeframe')
->filter(Filter::equal('id', $id))

Check failure on line 56 in application/clicommands/DownloadCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.3) / PHPStan 8.3

Parameter #2 $value of static method ipl\Stdlib\Filter::equal() expects array<mixed>|bool|float|int|string, mixed given.

Check failure on line 56 in application/clicommands/DownloadCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.2) / PHPStan 8.2

Parameter #2 $value of static method ipl\Stdlib\Filter::equal() expects array<mixed>|bool|float|int|string, mixed given.

Check failure on line 56 in application/clicommands/DownloadCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.5) / PHPStan 8.5

Parameter #2 $value of static method ipl\Stdlib\Filter::equal() expects array<mixed>|bool|float|int|string, mixed given.

Check failure on line 56 in application/clicommands/DownloadCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.4) / PHPStan 8.4

Parameter #2 $value of static method ipl\Stdlib\Filter::equal() expects array<mixed>|bool|float|int|string, mixed given.
->first();

if ($report === null) {
Expand All @@ -69,7 +70,7 @@
$format = strtolower($format);
switch ($format) {
case 'pdf':
$content = Pdfexport::first()->htmlToPdf($report->toPdf());

Check failure on line 73 in application/clicommands/DownloadCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.3) / PHPStan 8.3

Cannot call method htmlToPdf() on mixed.

Check failure on line 73 in application/clicommands/DownloadCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.2) / PHPStan 8.2

Cannot call method htmlToPdf() on mixed.

Check failure on line 73 in application/clicommands/DownloadCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.5) / PHPStan 8.5

Cannot call method htmlToPdf() on mixed.

Check failure on line 73 in application/clicommands/DownloadCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.4) / PHPStan 8.4

Cannot call method htmlToPdf() on mixed.
break;
case 'csv':
$content = $report->toCsv();
Expand Down
3 changes: 2 additions & 1 deletion application/clicommands/ListCommand.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

/* Icinga Reporting | (c) 2023 Icinga GmbH | GPLv2 */
// SPDX-FileCopyrightText: 2022 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting\Clicommands;

Expand Down Expand Up @@ -67,7 +68,7 @@
$filter = $this->params->get('filter');
if ($filter !== null) {
if (strpos($filter, '*') === false) {
$filter = '*' . $filter . '*';

Check failure on line 71 in application/clicommands/ListCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.3) / PHPStan 8.3

Binary operation "." between '*' and mixed results in an error.

Check failure on line 71 in application/clicommands/ListCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.2) / PHPStan 8.2

Binary operation "." between '*' and mixed results in an error.

Check failure on line 71 in application/clicommands/ListCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.5) / PHPStan 8.5

Binary operation "." between '*' and mixed results in an error.

Check failure on line 71 in application/clicommands/ListCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.4) / PHPStan 8.4

Binary operation "." between '*' and mixed results in an error.
}
$reports->filter(Filter::like('name', $filter));
}
Expand All @@ -79,16 +80,16 @@

$dataCallbacks = [
'ID' => function ($report) {
return $report->id;

Check failure on line 83 in application/clicommands/ListCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.3) / PHPStan 8.3

Cannot access property $id on mixed.

Check failure on line 83 in application/clicommands/ListCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.2) / PHPStan 8.2

Cannot access property $id on mixed.

Check failure on line 83 in application/clicommands/ListCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.5) / PHPStan 8.5

Cannot access property $id on mixed.

Check failure on line 83 in application/clicommands/ListCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.4) / PHPStan 8.4

Cannot access property $id on mixed.
},
'Name' => function ($report) {
return $report->name;

Check failure on line 86 in application/clicommands/ListCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.3) / PHPStan 8.3

Cannot access property $name on mixed.

Check failure on line 86 in application/clicommands/ListCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.2) / PHPStan 8.2

Cannot access property $name on mixed.

Check failure on line 86 in application/clicommands/ListCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.5) / PHPStan 8.5

Cannot access property $name on mixed.

Check failure on line 86 in application/clicommands/ListCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.4) / PHPStan 8.4

Cannot access property $name on mixed.
},
'Author' => function ($report) {
return $report->author;

Check failure on line 89 in application/clicommands/ListCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.3) / PHPStan 8.3

Cannot access property $author on mixed.

Check failure on line 89 in application/clicommands/ListCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.2) / PHPStan 8.2

Cannot access property $author on mixed.

Check failure on line 89 in application/clicommands/ListCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.5) / PHPStan 8.5

Cannot access property $author on mixed.

Check failure on line 89 in application/clicommands/ListCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.4) / PHPStan 8.4

Cannot access property $author on mixed.
},
'Type' => function ($report) {
return (new $report->reportlets->class())->getName();

Check failure on line 92 in application/clicommands/ListCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.3) / PHPStan 8.3

Cannot access property $reportlets on mixed.

Check failure on line 92 in application/clicommands/ListCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.3) / PHPStan 8.3

Cannot access property $class on mixed.

Check failure on line 92 in application/clicommands/ListCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.2) / PHPStan 8.2

Cannot access property $reportlets on mixed.

Check failure on line 92 in application/clicommands/ListCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.2) / PHPStan 8.2

Cannot access property $class on mixed.

Check failure on line 92 in application/clicommands/ListCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.5) / PHPStan 8.5

Cannot access property $reportlets on mixed.

Check failure on line 92 in application/clicommands/ListCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.5) / PHPStan 8.5

Cannot access property $class on mixed.

Check failure on line 92 in application/clicommands/ListCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.4) / PHPStan 8.4

Cannot access property $reportlets on mixed.

Check failure on line 92 in application/clicommands/ListCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.4) / PHPStan 8.4

Cannot access property $class on mixed.
}
];

Expand All @@ -103,10 +104,10 @@
}

$rows = [];
foreach ($reports as $report) {

Check failure on line 107 in application/clicommands/ListCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.3) / PHPStan 8.3

Argument of an invalid type mixed supplied for foreach, only iterables are supported.

Check failure on line 107 in application/clicommands/ListCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.2) / PHPStan 8.2

Argument of an invalid type mixed supplied for foreach, only iterables are supported.

Check failure on line 107 in application/clicommands/ListCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.5) / PHPStan 8.5

Argument of an invalid type mixed supplied for foreach, only iterables are supported.

Check failure on line 107 in application/clicommands/ListCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.4) / PHPStan 8.4

Argument of an invalid type mixed supplied for foreach, only iterables are supported.
$row = [];
foreach ($dataCallbacks as $key => $callback) {
$row[] = $callback($report);

Check failure on line 110 in application/clicommands/ListCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.3) / PHPStan 8.3

Trying to invoke mixed but it's not a callable.

Check failure on line 110 in application/clicommands/ListCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.2) / PHPStan 8.2

Trying to invoke mixed but it's not a callable.

Check failure on line 110 in application/clicommands/ListCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.5) / PHPStan 8.5

Trying to invoke mixed but it's not a callable.

Check failure on line 110 in application/clicommands/ListCommand.php

View workflow job for this annotation

GitHub Actions / PHP / Static analysis (8.4) / PHPStan 8.4

Trying to invoke mixed but it's not a callable.
$columnsAndLengths[$key] = max($columnsAndLengths[$key], mb_strlen($callback($report)));
}

Expand Down
3 changes: 2 additions & 1 deletion application/clicommands/ScheduleCommand.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

// Icinga Reporting | (c) 2018 Icinga GmbH | GPLv2
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting\Clicommands;

Expand Down
3 changes: 2 additions & 1 deletion application/controllers/ConfigController.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

// Icinga Reporting | (c) 2018 Icinga GmbH | GPLv2
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting\Controllers;

Expand Down
3 changes: 2 additions & 1 deletion application/controllers/ReportController.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

// Icinga Reporting | (c) 2018 Icinga GmbH | GPLv2
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting\Controllers;

Expand Down
3 changes: 2 additions & 1 deletion application/controllers/ReportsController.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

// Icinga Reporting | (c) 2018 Icinga GmbH | GPLv2
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting\Controllers;

Expand Down
3 changes: 2 additions & 1 deletion application/controllers/TemplateController.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

// Icinga Reporting | (c) 2019 Icinga GmbH | GPLv2
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting\Controllers;

Expand Down
3 changes: 2 additions & 1 deletion application/controllers/TemplatesController.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

// Icinga Reporting | (c) 2019 Icinga GmbH | GPLv2
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting\Controllers;

Expand Down
3 changes: 2 additions & 1 deletion application/controllers/TimeframeController.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

// Icinga Reporting | (c) 2019 Icinga GmbH | GPLv2
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting\Controllers;

Expand Down
3 changes: 2 additions & 1 deletion application/controllers/TimeframesController.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

// Icinga Reporting | (c) 2019 Icinga GmbH | GPLv2
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting\Controllers;

Expand Down
3 changes: 2 additions & 1 deletion application/forms/ConfigureMailForm.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

// Icinga Reporting | (c) 2019 Icinga GmbH | GPLv2
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting\Forms;

Expand Down
3 changes: 2 additions & 1 deletion application/forms/SelectBackendForm.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

// Icinga Reporting | (c) 2018 Icinga GmbH | GPLv2
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting\Forms;

Expand Down
3 changes: 2 additions & 1 deletion configuration.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

// Icinga Reporting | (c) 2018 Icinga GmbH | GPLv2
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting {

Expand Down
3 changes: 2 additions & 1 deletion library/Reporting/Actions/SendMail.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

// Icinga Reporting | (c) 2018 Icinga GmbH | GPLv2
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting\Actions;

Expand Down
3 changes: 2 additions & 1 deletion library/Reporting/Cli/Command.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

// Icinga Reporting | (c) 2018 Icinga GmbH | GPLv2
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting\Cli;

Expand Down
3 changes: 3 additions & 0 deletions library/Reporting/Common/Macros.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
<?php

// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting\Common;

trait Macros
Expand Down
3 changes: 2 additions & 1 deletion library/Reporting/Database.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

// Icinga Reporting | (c) 2018 Icinga GmbH | GPLv2
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting;

Expand Down
3 changes: 2 additions & 1 deletion library/Reporting/Dimensions.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

// Icinga Reporting | (c) 2018 Icinga GmbH | GPLv2
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting;

Expand Down
3 changes: 2 additions & 1 deletion library/Reporting/Hook/ActionHook.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

// Icinga Reporting | (c) 2018 Icinga GmbH | GPLv2
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting\Hook;

Expand Down
3 changes: 2 additions & 1 deletion library/Reporting/Hook/ReportHook.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

// Icinga Reporting | (c) 2018 Icinga GmbH | GPLv2
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting\Hook;

Expand Down
3 changes: 2 additions & 1 deletion library/Reporting/Mail.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

// Icinga Reporting | (c) 2018 Icinga GmbH | GPLv2
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting;

Expand Down
3 changes: 2 additions & 1 deletion library/Reporting/Model/Config.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

/* Icinga Reporting | (c) 2023 Icinga GmbH | GPLv2 */
// SPDX-FileCopyrightText: 2023 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting\Model;

Expand Down
3 changes: 2 additions & 1 deletion library/Reporting/Model/Report.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

/* Icinga Reporting | (c) 2023 Icinga GmbH | GPLv2 */
// SPDX-FileCopyrightText: 2023 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting\Model;

Expand Down
3 changes: 2 additions & 1 deletion library/Reporting/Model/Reportlet.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

/* Icinga Reporting | (c) 2023 Icinga GmbH | GPLv2 */
// SPDX-FileCopyrightText: 2023 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting\Model;

Expand Down
3 changes: 2 additions & 1 deletion library/Reporting/Model/Schedule.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

/* Icinga Reporting | (c) 2023 Icinga GmbH | GPLv2 */
// SPDX-FileCopyrightText: 2023 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting\Model;

Expand Down
3 changes: 2 additions & 1 deletion library/Reporting/Model/Schema.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

/* Icinga Reporting | (c) 2023 Icinga GmbH | GPLv2 */
// SPDX-FileCopyrightText: 2023 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting\Model;

Expand Down
3 changes: 2 additions & 1 deletion library/Reporting/Model/Template.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

/* Icinga Reporting | (c) 2023 Icinga GmbH | GPLv2 */
// SPDX-FileCopyrightText: 2023 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting\Model;

Expand Down
3 changes: 2 additions & 1 deletion library/Reporting/Model/Timeframe.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

/* Icinga Reporting | (c) 2023 Icinga GmbH | GPLv2 */
// SPDX-FileCopyrightText: 2023 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting\Model;

Expand Down
3 changes: 2 additions & 1 deletion library/Reporting/ProvidedActions.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

// Icinga Reporting | (c) 2018 Icinga GmbH | GPLv2
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting;

Expand Down
3 changes: 2 additions & 1 deletion library/Reporting/ProvidedHook/DbMigration.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

/* Icinga Reporting | (c) 2023 Icinga GmbH | GPLv2 */
// SPDX-FileCopyrightText: 2023 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting\ProvidedHook;

Expand Down
3 changes: 2 additions & 1 deletion library/Reporting/ProvidedReports.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

// Icinga Reporting | (c) 2018 Icinga GmbH | GPLv2
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting;

Expand Down
3 changes: 2 additions & 1 deletion library/Reporting/Report.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

// Icinga Reporting | (c) 2018 Icinga GmbH | GPLv2
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting;

Expand Down
3 changes: 2 additions & 1 deletion library/Reporting/ReportData.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

// Icinga Reporting | (c) 2018 Icinga GmbH | GPLv2
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting;

Expand Down
3 changes: 2 additions & 1 deletion library/Reporting/ReportRow.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

// Icinga Reporting | (c) 2018 Icinga GmbH | GPLv2
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting;

Expand Down
3 changes: 2 additions & 1 deletion library/Reporting/Reportlet.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

// Icinga Reporting | (c) 2018 Icinga GmbH | GPLv2
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting;

Expand Down
3 changes: 2 additions & 1 deletion library/Reporting/Reports/SystemReport.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

// Icinga Reporting | (c) 2018 Icinga GmbH | GPLv2
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting\Reports;

Expand Down
3 changes: 2 additions & 1 deletion library/Reporting/RetryConnection.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

// Icinga Reporting | (c) 2018 Icinga GmbH | GPLv2
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting;

Expand Down
3 changes: 2 additions & 1 deletion library/Reporting/Schedule.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

// Icinga Reporting | (c) 2018 Icinga GmbH | GPLv2
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting;

Expand Down
3 changes: 2 additions & 1 deletion library/Reporting/Str.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

// Icinga Reporting | (c) 2018 Icinga GmbH | GPLv2
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting;

Expand Down
3 changes: 2 additions & 1 deletion library/Reporting/Timeframe.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

// Icinga Reporting | (c) 2018 Icinga GmbH | GPLv2
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting;

Expand Down
3 changes: 2 additions & 1 deletion library/Reporting/Timerange.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

// Icinga Reporting | (c) 2018 Icinga GmbH | GPLv2
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting;

Expand Down
3 changes: 2 additions & 1 deletion library/Reporting/Values.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

// Icinga Reporting | (c) 2018 Icinga GmbH | GPLv2
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting;

Expand Down
3 changes: 2 additions & 1 deletion library/Reporting/Web/Controller.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

// Icinga Reporting | (c) 2018 Icinga GmbH | GPLv2
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting\Web;

Expand Down
3 changes: 2 additions & 1 deletion library/Reporting/Web/Forms/ReportForm.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

// Icinga Reporting | (c) 2018 Icinga GmbH | GPLv2
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later

namespace Icinga\Module\Reporting\Web\Forms;

Expand Down
Loading
Loading