Koray Birenheide
Software Architect at Personalburg e.K.

Metrics Dashboard

PHP UNIT Tests

PHPUnit 9.5.10 by Sebastian Bergmann and contributors.

.

..

...

....

.....

......

.......

........

.........

..........

...........

............

.............

..............

...............

................

.................

..................

...................

....................

.....................

......................

.......................

........................

Warning: Test skipped due to missing configuration file.

..........................

.........................

..........................

...........................

............................

.............................

..............................

...............................'

.................................

..................................

...................................

....................................

.....................................

......................................

.......................................'

.........................................

..........................................

Error: Undefined variable $response in testFile.php line 45

............................................

.............................................

..............................................

...............................................'

.................................................

..................................................

...................................................

....................................................

.....................................................

......................................................

.......................................................'

.........................................................

..........................................................

Warning: Deprecated function used in testDatabase.php line 78

...........................................................

............................................................

.............................................................

..............................................................

...............................................................'

.................................................................

..................................................................

...................................................................

....................................................................

.....................................................................

......................................................................

.......................................................................'

.........................................................................

Error: Division by zero in testMath.php line 22

............................................................................

.............................................................................

..............................................................................

...............................................................................'

.................................................................................

..................................................................................

...................................................................................

....................................................................................

.....................................................................................

......................................................................................

.......................................................................................'

.........................................................................................

..........................................................................................

Warning: Possible memory leak detected in testMemory.php line 50

...........................................................................................

............................................................................................

.............................................................................................

..............................................................................................

...............................................................................................'

F

Time: 00:01.123, Memory: 8.00 MB

There was 1 failure:

1) App\Tests\Feature\UserTest::testUserCreation

Expected status code 201 but received 500.

/path/to/tests/Feature/UserTest.php:25

.

F

Time: 00:01.456, Memory: 8.50 MB

There was 1 failure:

1) App\Tests\Unit\MathTest::testDivision

Expected 5 but received 0.

/path/to/tests/Unit/MathTest.php:15

OK, but with warnings (90 tests, 90 assertions, 4 warnings, 2 errors, 2 failures)

PHPUnit 9.5.10 by Sebastian Bergmann and contributors.

.

..

...

....

.....

......

.......

........

.........

..........

...........

............

.............

..............

...............

................

.................

..................

...................

....................

.....................

......................

.......................

........................

Warning: Test skipped due to missing configuration file.

..........................

.........................

..........................

...........................

Explorer
app
Console
Kernel.php
Http
Controllers
Middleware
.env
.gitignore
artisan
composer.json
composer.lock
package.json
phpunit.xml
server.php
webpack.mix.js
app > Http > Controllers > AnomalousBlogController.php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Inertia\Inertia;
use App\Corporations\CreepyPastaMachine\Database\Models\BlogArticle;
class AnomalousBlogController extends Controller {
public function portal($blogid = false)
{
$ClearanceLevelsEN = [ "Level 1" => "Unrestricted", "Level 2" => "Restricted", "Level 3" => "Confidential", "Level 4" => "Secret", "Level 5" => "Top Secret", "Level 6" => "Cosmic Top Secret" ]; $ClearanceLevelsDE = [ "Level 1" => "Uneingeschränkt", "Level 2" => "Eingeschränkt", "Level 3" => "Vertraulich", "Level 4" => "Geheim", "Level 5" => "Streng geheim", "Level 6" => "Kosmisch streng geheim" ]; $DisruptionClasses = [ "Dark" => 1, "Vlam" => 2, "Keneq" => 3, "Ekhi" => 4, "Amida" => 5, ]; $RiskClasses = [ "Notice" => 1, "Caution" => 2, "Warning" => 3, "Danger" => 4, "Critical" => 5, ]; } }
app > Http > Corporations > CreepyPastaMachine > Database > Models > BlogArticle.php
namespace App\Corporations\CreepyPastaMachine\Database\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Relations\HasOne;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Model;
use LaravelNeuro\LaravelNeuro\Networking\Database\Models\NetworkProject;
use App\Corporations\CreepyPastaMachine\Database\Models\ScpWarning;
class BlogArticle extends Model {
use HasFactory;
public $timestamps = true;
protected $table = "CPM_blog_articles";
protected $fillable = [ 'project_id', 'original', 'published', 'articleENraw', 'articleDEraw', 'articleEN', 'articleDE', 'articleENvo', 'articleDEvo' ];
app > Http > Corporations > CreepyPastaMachine > Spiders > NewsScraper.php
namespace App\Corporations\CreepyPastaMachine\Spiders;
use Generator;
use RoachPHP\Http\Request;
use RoachPHP\Http\Response;
use RoachPHP\Spider\BasicSpider;
use RoachPHP\Spider\ParseResult;
use RoachPHP\Extensions\LoggerExtension;
use RoachPHP\Extensions\StatsCollectorExtension;
use RoachPHP\Downloader\Middleware\RequestDeduplicationMiddleware;
class NewsScraper extends BasicSpider
{
public array $downloaderMiddleware = [
RequestDeduplicationMiddleware::class,
];

public array $spiderMiddleware = [
//
];

public array $itemProcessors = [
//
];

public array $extensions = [
LoggerExtension::class,
StatsCollectorExtension::class,
];

public int $concurrency = 2;
public int $requestDelay = 1;
app > Http > Corporations > CreepyPastaMachine > Bootstrap.php
namespace App\Corporations\CreepyPastaMachine;
use Illuminate\Support\Collection;
class Bootstrap
{
public static function models(): Collection
{
$modelsPath = __DIR__ . '/Database/Models';
$files = scandir($modelsPath)
; $models = [];
foreach ($files as $file)
{
// Skip non-PHP files and directoriesif (is_dir($file)
|| pathinfo($file, PATHINFO_EXTENSION)
!== 'php')
{
continue;
}

// Get the class name from the file name
$className = pathinfo($file, PATHINFO_FILENAME)
; // Resolve the full class name with namespace
$fullClassName = "App\\Corporations\\CreepyPastaMachine\\Database\\Models\\$className";
// Check if class exists and is a subclass of Eloquent Model
if (class_exists($fullClassName)
&& is_subclass_of($fullClassName, \Illuminate\Database\Eloquent\Model::class)
) {
// Instantiate the model and add it to the array $models[$className] = new $fullClassName;
}
}

return collect($models)
; }

}
app > Http > Corporations > CreepyPastaMachine > Database > migrations > 001_BlogArticles.php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('CPM_blog_articles', function (Blueprint $table)
{ $table->id();
$table->timestamps();
$table->unsignedBigInteger('project_id')
;
$table->foreign('project_id')
->references('id')
->on('laravel_neuro_network_projects')
;
$table->unsignedBigInteger('original')
;
$table->foreign('original')
->references('id')
->on('CPM_news_articles')
;
$table->boolean('published')
->default(true)
;
$table->text("articleENraw")
->nullable();
$table->text("articleDEraw")
->nullable();
$table->text("articleEN")
->nullable();
$table->text("articleDE")
->nullable();
$table->text("articleENvo")
->nullable();
$table->text("articleDEvo")
->nullable();
});
}
};
Terminal

root@kbcss:~# composer install

Loading composer repositories with package information

Installing dependencies (including require-dev) from lock file

Package operations: 10 installs, 0 updates, 0 removals

- Installing symfony/polyfill-ctype (v1.18.1): Loading from cache

- Installing phpoption/phpoption (1.7.5): Loading from cache

- Installing vlucas/phpdotenv (v3.6.7): Loading from cache

- Installing symfony/css-selector (v5.1.3): Loading from cache

- Installing tijsverkoyen/css-to-inline-styles (2.2.3): Loading from cache

- Installing symfony/polyfill-php72 (v1.18.1): Loading from cache

- Installing symfony/polyfill-mbstring (v1.18.1): Loading from cache

- Installing symfony/var-dumper (v5.1.3): Loading from cache

- Installing symfony/routing (v5.1.3): Loading from cache

- Installing symfony/process (v5.1.3): Loading from cache

symfony/polyfill-ctype suggests installing ext-ctype (The Ctype extension)

symfony/routing suggests installing symfony/config (For using the all-in-one router or any loader)

symfony/process suggests installing symfony/console (For using the Process component with the Console component)

Writing lock file

Generating optimized autoload files

root@kbcss:~# php artisan migrate

Migrating: 2020_01_01_000001_create_users_table

Migrated: 2020_01_01_000001_create_users_table (0.23 seconds)

Migrating: 2020_01_01_000002_create_password_resets_table

Migrated: 2020_01_01_000002_create_password_resets_table (0.15 seconds)

Migrating: 2020_01_01_000003_create_posts_table

Migrated: 2020_01_01_000003_create_posts_table (0.19 seconds)

root@kbcss:~# composer update

Loading composer repositories with package information

Updating dependencies (including require-dev)

Package operations: 1 install, 2 updates, 0 removals

- Updating symfony/polyfill-ctype (v1.18.1 => v1.19.0): Loading from cache

- Updating phpoption/phpoption (1.7.5 => 1.7.6): Loading from cache

- Installing psr/container (1.0.0): Loading from cache

Writing lock file

Generating optimized autoload files

root@kbcss:~# php artisan serve

Starting Laravel development server: http://127.0.0.1:8000

[Sun May 23 13:57:03 2024] PHP 7.4.3 Development Server (http://127.0.0.1:8000) started

root@kbcss:~# php artisan make:model Task

Model created successfully.

root@kbcss:~# php artisan make:controller TaskController

Controller created successfully.

root@kbcss:~# php artisan make:migration create_tasks_table

Created Migration: 2024_06_01_135703_create_tasks_table

root@kbcss:~# php artisan migrate

Migrating: 2024_06_01_135703_create_tasks_table

Migrated: 2024_06_01_135703_create_tasks_table (0.22 seconds)

root@kbcss:~# composer require barryvdh/laravel-debugbar

Using version ^3.5 for barryvdh/laravel-debugbar

./composer.json has been updated

Loading composer repositories with package information

Updating dependencies (including require-dev)

Package operations: 1 install, 0 updates, 0 removals

- Installing barryvdh/laravel-debugbar (v3.5.7): Loading from cache

Writing lock file

Generating optimized autoload files

root@kbcss:~# composer install

Loading composer repositories with package information

Installing dependencies (including require-dev) from lock file

Package operations: 10 installs, 0 updates, 0 removals

- Installing symfony/polyfill-ctype (v1.18.1): Loading from cache

- Installing phpoption/phpoption (1.7.5): Loading from cache

- Installing vlucas/phpdotenv (v3.6.7): Loading from cache

- Installing symfony/css-selector (v5.1.3): Loading from cache

- Installing tijsverkoyen/css-to-inline-styles (2.2.3): Loading from cache

- Installing symfony/polyfill-php72 (v1.18.1): Loading from cache

- Installing symfony/polyfill-mbstring (v1.18.1): Loading from cache

- Installing symfony/var-dumper (v5.1.3): Loading from cache

- Installing symfony/routing (v5.1.3): Loading from cache

- Installing symfony/process (v5.1.3): Loading from cache

symfony/polyfill-ctype suggests installing ext-ctype (The Ctype extension)

symfony/routing suggests installing symfony/config (For using the all-in-one router or any loader)

symfony/process suggests installing symfony/console (For using the Process component with the Console component)

Writing lock file

Generating optimized autoload files

root@kbcss:~# php artisan migrate

Migrating: 2020_01_01_000001_create_users_table

Migrated: 2020_01_01_000001_create_users_table (0.23 seconds)

Migrating: 2020_01_01_000002_create_password_resets_table

Migrated: 2020_01_01_000002_create_password_resets_table (0.15 seconds)

Migrating: 2020_01_01_000003_create_posts_table

Vue.js
Inertia.js
Eloquent ORM
Laravel
React.js
Express
SQL
node.js
Kibana
Elastic Search
Logstash
Core Skills
Project Management
Laravel Engineering
Object-Relational Mapping
Linux Systems
API Development
OpSec
AI Integration
SEO & SEM
Web Scraping & Crawling
Graphic- & Web-Design
Digital Humanities
Technical Expertise
PHP
Bash Scripting
Javascript & Node.js
HTML
CSS
SQL
TailwindCSS
Vue.js
Docker
Languages

Japanologist, B.A.


About Me
Since 2022, I have been working at Personalburg e.K, where I have led and implemented the development of our IT infrastructure. This includes versioned development with GitHub, virtualization with Docker, and ticket and project management with Jira and Confluence. The internal content management system I developed for job market management, uses the PHP Laravel framework to manage a variety of job markets and collect critical data through automated web scraping. My primary focus on any project is automation, standardization, and modernization.
Personalburg e.K.

Personalburg e.K. is a dynamic career network founded by seasoned experts in the job placement industry. We specialize in the development, design, and placement of job advertisements, as well as tailored HR solutions for companies.

Our IT department drives innovation by continuously expanding our internal infrastructure and developing exciting new digital services. Using modern technologies and forward-thinking approaches, we ensure the efficiency and effectiveness of our services.

My current tasks include:

Planning, implementing, and coordinating work processes, versioning, and automations in the area of in-house software development
Planning and coordinating the implementation and improvement of in-house software architecture
Planning and developing new software applications, as well as integrating them with existing in-house software applications
Integrating in-house software applications with external interfaces and planning and developing internal interfaces for secure and fast data traffic
Providing consulting services on topics such as cybersecurity, search engine optimization, AI integration, and software architecture, as well as, when needed, screening potential new employees with expertise and responsibilities in these areas
Software development and coding in various programming languages, based on existing and planned software architecture
Setting up, automating, and managing servers
Koray Birenheide, 2025
Cookies

This site utilizes cookies for esstential site features, but also for analytics purposes via Google Tag Manager. If you would like to consent to analytics data of your visit being collected, please click "OK" below, or click "Essential Cookies Only" to only allow essential cookies.