Skip to content

Instantly share code, notes, and snippets.

View BrainInBlack's full-sized avatar

Daniel BrainInBlack

View GitHub Profile
@BrainInBlack
BrainInBlack / BitwiseFlags.php
Last active September 3, 2017 22:27
Bitwise Flag Trait for PHP 7.x+
<?php
declare(strict_types=1);
/**
* Bitwise Flags Trait
* Trait that makes it easy to use Bitwise Flags in your classes.
* @version 7.0.2
* @author Daniel "BrainInBlack" Lieberwirth <braininblack@gmail.com>
* @author PHP Manual Contributer wbcart (http://php.net/manual/en/language.operators.bitwise.php#108679)
@BrainInBlack
BrainInBlack / AutoloadClosure.php
Last active September 2, 2017 22:06
Autoloader Closure for PHP 7.x+
<?php
declare(strict_types=1);
/**
* Autoload Closure
* Simple autoload closure, that makes use of namespaces.
* @version 7.0.1
* @author Daniel "BrainInBlack" Lieberwirth <braininblack@gmail.com>
* @license DO WHAT EVER THE HECK YOU WANT