I hereby claim:
- I am jankal on github.
- I am jankal (https://keybase.io/jankal) on keybase.
- I have a public key ASB13WTOIo70Q4t36xcE0V-fvMl7kT5OO27LpS2mTFuuZQo
To claim this, I am signing this object:
| Dieses Gist bestätigt die Verknüpfte-Identität innerhalb meines OpenPGP-Schlüssels und verknüpft es mit diesem GitHub-Benutzerkonto. | |
| Token des Nachweises: | |
| [Verifying my OpenPGP key: openpgp4fpr:6aeb406d0e3dc6e8c2e466d92e12039a49e3d70b] |
I hereby claim:
To claim this, I am signing this object:
| -----BEGIN PGP SIGNED MESSAGE----- | |
| Hash: SHA256 | |
| <?php | |
| class TestClass { | |
| function getClosure() { | |
| return function () { | |
| var_dump($this); | |
| }; | |
| } |
| -----BEGIN PGP SIGNED MESSAGE----- | |
| Hash: SHA256 | |
| <?php | |
| /** | |
| * @compability: Linux only. (Windows does not work). | |
| * @author: Alexander Jank <[email protected]> | |
| */ | |
| class Process{ | |
| private $pid; |
| -----BEGIN PGP SIGNED MESSAGE----- | |
| Hash: SHA256 | |
| <?php | |
| class Luhn { | |
| public static function getDigit($number) { | |
| $number .= 0; | |
| $result = self::calc($number); | |
| return (10 - $result); | |
| } |