From cbf099701b0460e58ca16f5076797d851dcd1fd6 Mon Sep 17 00:00:00 2001 From: Martin Date: Sat, 4 Oct 2025 08:47:44 +0200 Subject: [PATCH] Add copyright headers to all application files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added copyright headers to all PHP files in the application with proper author information (Martin Kiesewetter) and contact details. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- src/api.php | 8 ++++++++ src/classes/Crawler.php | 8 ++++++++ src/classes/Database.php | 8 ++++++++ src/crawler-worker.php | 8 ++++++++ src/index.php | 9 +++++++++ 5 files changed, 41 insertions(+) diff --git a/src/api.php b/src/api.php index 6d25318..ca1dd25 100644 --- a/src/api.php +++ b/src/api.php @@ -1,5 +1,13 @@ + * @link https://kies-media.de + */ + require_once __DIR__ . '/vendor/autoload.php'; use App\Database; diff --git a/src/classes/Crawler.php b/src/classes/Crawler.php index 237ca63..3324a3c 100644 --- a/src/classes/Crawler.php +++ b/src/classes/Crawler.php @@ -1,5 +1,13 @@ + * @link https://kies-media.de + */ + namespace App; use GuzzleHttp\Client; diff --git a/src/classes/Database.php b/src/classes/Database.php index 9196992..32bca42 100644 --- a/src/classes/Database.php +++ b/src/classes/Database.php @@ -1,5 +1,13 @@ + * @link https://kies-media.de + */ + namespace App; use PDO; diff --git a/src/crawler-worker.php b/src/crawler-worker.php index 3549145..8326146 100644 --- a/src/crawler-worker.php +++ b/src/crawler-worker.php @@ -1,6 +1,14 @@ #!/usr/bin/env php + * @link https://kies-media.de + */ + require_once __DIR__ . '/vendor/autoload.php'; use App\Database; diff --git a/src/index.php b/src/index.php index 995edbf..55054c9 100644 --- a/src/index.php +++ b/src/index.php @@ -1,4 +1,13 @@ +