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); | |
/** | |
* Bitwise Flags Trait | |
* Trait that makes it easy to use Bitwise Flags in your classes. | |
* @version 7.0.2 | |
* @author Daniel "BrainInBlack" Lieberwirth <[email protected]> | |
* @author PHP Manual Contributer wbcart (http://php.net/manual/en/language.operators.bitwise.php#108679) |
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); | |
/** | |
* Autoload Closure | |
* Simple autoload closure, that makes use of namespaces. | |
* @version 7.0.1 | |
* @author Daniel "BrainInBlack" Lieberwirth <[email protected]> | |
* @license DO WHAT EVER THE HECK YOU WANT |