Skip to content

Instantly share code, notes, and snippets.

View azjezz's full-sized avatar
🎯
Focusing

Saif Eddin Gmati azjezz

🎯
Focusing
View GitHub Profile
<?php
/**
* @context={}
*/
function foo(): void {}
/**
* @context={io}

uncached

This benchmark runs with cache disabled for all of Symfony, Fastroute, and HackRouting.

The (matcher/dispatcher/resolver) is being created in each iteration from scratch.

Ranking:

  1. FastRoute
  2. Symfony
  3. HackRouting
@azjezz
azjezz / main.php
Last active December 30, 2021 15:27
<?php
declare(strict_types=1);
use Psl\Async;
use Psl\IO;
require 'vendor/autoload.php';
function fetch(string $id): string {
<?php
declare(strict_types=1);
namespace App;
struct User {
string $identifier;
}
@azjezz
azjezz / 0.php
Last active December 12, 2022 15:35
<?php
declare(strict_types=1);
namespace App;
enum ArticleStatus {
case Published;
case Draft;
case Archived;
@azjezz
azjezz / fennec-out.txt
Created November 4, 2024 16:48
fennec type checking benchmark
fennec check
error: argument 2 of function 'Qux\foo' expected `int`, but `non-empty-list { 12 }` was found
┌─ main.php:9:14
9 │ foo("hello", [12], 1.0);
│ ^^^^ argument 2 has type `non-empty-list { 12 }`
┌─ foo.php:7:27
7 │ function foo(string $bar, int $baz, bool $f): void
@azjezz
azjezz / install-mago.sh
Last active December 20, 2024 20:12
Mago Bash Installer
#!/usr/bin/env bash
set -euo pipefail
REPO="carthage-software/mago"
BIN_NAME="mago"
TMP_DIR=$(mktemp -d)
NEW_ISSUE="https://github.com/carthage-software/mago/issues/new"
INSTALL_DIR=""