Skip to content

Instantly share code, notes, and snippets.

View annervisser's full-sized avatar

Anner Visser annervisser

View GitHub Profile
/** Apply styling only when refined github is disabled */
:root:not([refined-github]) {
.merge-status-list {
display: flex;
flex-direction: column;
}
/** Show successful checks after other checks */
.merge-status-item:has(.octicon-check) {
order: 1;
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>PDF Viewer</title>
<style>
html,body {
margin: 0;
padding: 0;
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@annervisser
annervisser / CustomAddReturnTypeDeclarationRector.php
Created March 1, 2022 18:15
Rector config for Shardj/zf1-future
<?php
// based on AddReturnTypeDeclarationRector from rector
declare(strict_types=1);
namespace CustomRectorRules;
use PhpParser\Node;
use PhpParser\Node\Stmt\ClassMethod;