Skip to content

Instantly share code, notes, and snippets.

View alexander-schranz's full-sized avatar

Alexander Schranz alexander-schranz

View GitHub Profile
@alexander-schranz
alexander-schranz / ExampleController.php
Created March 25, 2025 08:32
Multi Step Form Type and Wizard
<?php
public function __invoke(Request $request): Response
{
$step = $request->query->getInt('step', 1);
$helper = new WizardHelper($request, clearExistingData: 1 === $step);
$data = $this->getData($helper->getAllData());
$form = $this->formFactory->create(ExampleFormType::class, $data, options: [
'activeStep' => $step,
<?php
use Symfony\Component\Form\FormView;
/**
* The following converts a form view into a snapshot able format, to test different form types and form builders.
*/
class FormTestHelper
{
/**
@alexander-schranz
alexander-schranz / script.sh
Created March 11, 2025 08:14
PHPStan Baseline Timeline
php -r '(function(string $baselineFile, string $branch) {
echo "date,count\\n";
foreach (explode("\\n", `git log {$branch} --pretty="format:%H;%cI" --date-order --reverse {$baselineFile}`) as $line) {
[$hash, $date] = explode(";", $line);
preg_match_all("`^\\s+count:\\s+(\\d+)`m", `git show $hash:{$baselineFile}`, $matches);
echo $date, ",", array_sum(array_map("intval", $matches[1])), "\\n";
}
})("phpstan-baseline.neon", "origin/3.0");' # branch name
@alexander-schranz
alexander-schranz / InMemoryDomainEventDispatcher.php
Last active October 17, 2024 15:57
In Memory Service Examples you don't require Mocks
<?php
declare(strict_types=1);
namespace App\Tests\Unit;
use Sulu\Bundle\ActivityBundle\Application\Collector\DomainEventCollectorInterface;
use Sulu\Bundle\ActivityBundle\Domain\Event\DomainEvent;
class InMemoryDomainEventDispatcher implements DomainEventCollectorInterface
@alexander-schranz
alexander-schranz / PhpCrFixerCommand.php
Created October 19, 2023 14:20
A command to check if default workspace is not longer in sync with live workspace in Sulu CMS
<?php
declare(strict_types=1);
namespace App\Command;
use PHPCR\NodeInterface;
use PHPCR\Query\RowInterface;
use PHPCR\SessionInterface;
use Sulu\Component\Webspace\Manager\WebspaceManagerInterface;
@alexander-schranz
alexander-schranz / PHP-Cache-Files-and-Directories.md
Last active October 25, 2023 13:50
PHP Tools default cache files and directories

PHP Tool Cache Files and Directories

Collecting here which PHP Tools use caches here and for which usecase.

The widely used sys_get_temp_dir() method represents TMPDIR environment variable if not specially sys_temp_dir is defined in the php.ini file.

PHPStan

Can avoid reanalyzing unrelated files:

@alexander-schranz
alexander-schranz / DebugMemoryUsageTestListener.php
Last active July 17, 2023 22:42
Debug Memory Usage of PHPUnit TestCase
<?php
declare(strict_types=1);
namespace App\Tests;
use PHPUnit\Framework\TestListener;
use PHPUnit\Framework\TestListenerDefaultImplementation;
use PHPUnit\Framework\TestSuite;
@alexander-schranz
alexander-schranz / CleanUpPropertiesTestListener.php
Last active July 17, 2023 23:09
Prototype of a listener cleaning up all properties of a PHPUnit class. WARNING: This didn't decrease any memory usage for me!
<?php
declare(strict_types=1);
namespace App\Tests;
use PHPUnit\Framework\Test;
use PHPUnit\Framework\TestListener;
use PHPUnit\Framework\TestListenerDefaultImplementation;
use PHPUnit\Framework\TestSuite;
<?php
declare(strict_types=1);
use Symfony\Component\Dotenv\Dotenv;
use Symfony\Component\Process\ExecutableFinder;
require \dirname(__DIR__) . '/vendor/autoload.php';
(new Dotenv())->bootEnv(\dirname(__DIR__) . '/.env');
@alexander-schranz
alexander-schranz / base.html.twig
Last active February 14, 2023 13:01
Lazy and Passive Slick
<!DOCTYPE html>
<html lang="{{ app.request.locale|split('_')[0] }}">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
{#-
Various Tools should be used to validate HTML, Accessibility, Structured Data and speed of the site:
- HTML Validation: