This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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; |