Skip to content

Instantly share code, notes, and snippets.

View janedbal's full-sized avatar

Jan Nedbal janedbal

View GitHub Profile
CREATE FUNCTION UUID7()
RETURNS CHAR(36)
BEGIN
DECLARE timestamp CHAR(12);
DECLARE h1 CHAR(8);
DECLARE h2 CHAR(4);
DECLARE h3 CHAR(3);
DECLARE h4 CHAR(4);
DECLARE h5 CHAR(12);
<?php declare(strict_types = 1);
namespace ShipMonk\Rules\Rector;
use PhpParser\Node;
use PhpParser\Node\Identifier;
use PhpParser\Node\Stmt\ClassLike;
use PHPStan\Analyser\MutatingScope;
use PHPStan\Analyser\Scope;
use PHPStan\Type\ArrayType;
@janedbal
janedbal / DoctrineTypeWideningRule.php
Last active January 24, 2025 09:37
Detect doctrine query type widening in direct returns
<?php declare(strict_types = 1);
namespace ShipMonk\Rules\PHPStan\Rule;
use Doctrine\ORM\Query;
use PhpParser\Node;
use PhpParser\Node\Expr\MethodCall;
use PhpParser\Node\Stmt\Return_;
use PHPStan\Analyser\Scope;
use PHPStan\Node\MethodReturnStatementsNode;
@janedbal
janedbal / doctrine-two-phase-migrations-migrate.php
Last active January 24, 2025 09:38
How to migrate from doctrine/migrations to shipmonk/doctrine-two-phase-migrations
<?php
// see https://github.com/shipmonk-rnd/doctrine-two-phase-migrations/issues/97
// composer require nette/utils
require __DIR__ . '/../vendor/autoload.php';
/** @var SplFileInfo $file */
foreach (\Nette\Utils\Finder::findFiles('*.php')->in(__DIR__ . '/../migrations') as $file) {
<?php declare(strict_types = 1);
namespace ShipMonk\Rules\PHPStan\Rule;
use Doctrine\ORM\Query;
use PhpParser\Node;
use PhpParser\Node\Expr\MethodCall;
use PhpParser\Node\Identifier;
use PhpParser\Node\VariadicPlaceholder;
use PHPStan\Analyser\Scope;
@janedbal
janedbal / GarbageCollectorRule.php
Last active October 16, 2024 13:31
Following rule MAY improve PHPStan run time. It makes sense only when you disable GC for PHPStan execution.
<?php declare(strict_types = 1);
namespace ShipMonk\Rules\PHPStan\Rule;
use PhpParser\Node;
use PHPStan\Analyser\Scope;
use PHPStan\Node\InClassNode;
use PHPStan\Rules\IdentifierRuleError;
use PHPStan\Rules\Rule;
use function gc_collect_cycles;
@janedbal
janedbal / FixUnmatchedIgnoresFormatter.php
Created January 23, 2025 14:06
Solution for PHPStan issue #12328: `Unable to inline-ignore errors from most collector-based rules`
<?php declare(strict_types = 1);
namespace ShipMonk\Rules\PHPStan\Formatter;
use PHPStan\Analyser\Error;
use PHPStan\Command\AnalysisResult;
use PHPStan\Command\ErrorFormatter\ErrorFormatter;
use PHPStan\Command\ErrorFormatter\TableErrorFormatter;
use PHPStan\Command\Output;
use ShipMonk\PHPStan\DeadCode\Rule\DeadCodeRule;