Skip to content

Commit

Permalink
Add copyright statements
Browse files Browse the repository at this point in the history
  • Loading branch information
JC5 committed Mar 29, 2022
1 parent 2a1738c commit 9cdaf70
Show file tree
Hide file tree
Showing 127 changed files with 2,583 additions and 29 deletions.
21 changes: 21 additions & 0 deletions app/Console/Commands/Correction/FixIbans.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,25 @@
<?php

/*
* FixIbans.php
* Copyright (c) 2022 [email protected]
*
* This file is part of Firefly III (https://github.com/firefly-iii).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/

declare(strict_types=1);

namespace FireflyIII\Console\Commands\Correction;
Expand Down
24 changes: 23 additions & 1 deletion app/Handlers/Events/BillEventHandler.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
<?php

/*
* BillEventHandler.php
* Copyright (c) 2022 [email protected]
*
* This file is part of Firefly III (https://github.com/firefly-iii).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/

declare(strict_types=1);

namespace FireflyIII\Handlers\Events;

use FireflyIII\Events\WarnUserAboutBill;
Expand Down Expand Up @@ -38,4 +60,4 @@ public function warnAboutBill(WarnUserAboutBill $event): void
Log::debug('warnAboutBill');
}

}
}
24 changes: 23 additions & 1 deletion app/Helpers/Collector/Extensions/AttachmentCollection.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
<?php

/*
* AttachmentCollection.php
* Copyright (c) 2022 [email protected]
*
* This file is part of Firefly III (https://github.com/firefly-iii).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/

declare(strict_types=1);

namespace FireflyIII\Helpers\Collector\Extensions;

use FireflyIII\Helpers\Collector\GroupCollectorInterface;
Expand Down Expand Up @@ -281,4 +303,4 @@ public function hasNoAttachments(): GroupCollectorInterface

return $this;
}
}
}
24 changes: 23 additions & 1 deletion app/Jobs/WarnAboutBills.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
<?php

/*
* WarnAboutBills.php
* Copyright (c) 2022 [email protected]
*
* This file is part of Firefly III (https://github.com/firefly-iii).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/

declare(strict_types=1);

namespace FireflyIII\Jobs;

use Carbon\Carbon;
Expand Down Expand Up @@ -150,4 +172,4 @@ public function setForce(bool $force): void
{
$this->force = $force;
}
}
}
22 changes: 22 additions & 0 deletions app/Mail/BillWarningMail.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
<?php

/*
* BillWarningMail.php
* Copyright (c) 2022 [email protected]
*
* This file is part of Firefly III (https://github.com/firefly-iii).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/

declare(strict_types=1);

namespace FireflyIII\Mail;

use FireflyIII\Models\Bill;
Expand Down
21 changes: 21 additions & 0 deletions config/sanctum.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,25 @@
<?php

/*
* sanctum.php
* Copyright (c) 2022 [email protected]
*
* This file is part of Firefly III (https://github.com/firefly-iii).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/

declare(strict_types=1);

use FireflyIII\Http\Middleware\EncryptCookies;
Expand Down
24 changes: 23 additions & 1 deletion config/search.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
<?php

/*
* search.php
* Copyright (c) 2022 [email protected]
*
* This file is part of Firefly III (https://github.com/firefly-iii).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/

declare(strict_types=1);

return [
'operators' => [
'user_action' => ['alias' => false, 'needs_context' => true,],
Expand Down Expand Up @@ -208,4 +230,4 @@
'attachment_notes_ends' => ['alias' => false, 'needs_context' => true],
'attachment_notes_end' => ['alias' => true, 'alias_for' => 'attachment_notes_ends', 'needs_context' => true],
],
];
];
21 changes: 21 additions & 0 deletions config/twigbridge.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,25 @@
<?php

/*
* twigbridge.php
* Copyright (c) 2022 [email protected]
*
* This file is part of Firefly III (https://github.com/firefly-iii).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/

declare(strict_types=1);


Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,25 @@
<?php

/*
* 2021_12_27_000001_create_local_personal_access_tokens_table.php
* Copyright (c) 2022 [email protected]
*
* This file is part of Firefly III (https://github.com/firefly-iii).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/

declare(strict_types=1);

use Illuminate\Database\Migrations\Migration;
Expand Down
20 changes: 20 additions & 0 deletions frontend/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
/*
* .eslintrc.js
* Copyright (c) 2022 [email protected]
*
* This file is part of Firefly III (https://github.com/firefly-iii).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/

const { resolve } = require('path');
module.exports = {
// https://eslint.org/docs/user-guide/configuring#configuration-cascading-and-hierarchy
Expand Down
20 changes: 20 additions & 0 deletions frontend/.postcssrc.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
/*
* .postcssrc.js
* Copyright (c) 2022 [email protected]
*
* This file is part of Firefly III (https://github.com/firefly-iii).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/

// https://github.com/michael-ciniawsky/postcss-load-config

module.exports = {
Expand Down
20 changes: 20 additions & 0 deletions frontend/babel.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
/*
* babel.config.js
* Copyright (c) 2022 [email protected]
*
* This file is part of Firefly III (https://github.com/firefly-iii).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/

/* eslint-env node */

module.exports = api => {
Expand Down
20 changes: 20 additions & 0 deletions frontend/public/maskable-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions frontend/public/safari-pinned-tab.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 9cdaf70

Please sign in to comment.