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
/** 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; |
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
<!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.
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 | |
// based on AddReturnTypeDeclarationRector from rector | |
declare(strict_types=1); | |
namespace CustomRectorRules; | |
use PhpParser\Node; | |
use PhpParser\Node\Stmt\ClassMethod; |