I hereby claim:
- I am thekid on github.
- I am thekid (https://keybase.io/thekid) on keybase.
- I have a public key whose fingerprint is 68EE F23B A5EC 3F4B FB8A 6B27 3140 68E1 9B60 6B23
To claim this, I am signing this object:
| diff --git a/tools/class-main.php b/tools/class-main.php | |
| index efd6f91..2fcede3 100755 | |
| --- a/tools/class-main.php | |
| +++ b/tools/class-main.php | |
| @@ -44,11 +44,9 @@ if (!include(__DIR__.DIRECTORY_SEPARATOR.'lang.base.php')) { | |
| exit(0x3d); | |
| } | |
| -$home= getenv('HOME'); | |
| -list($use, $include)= explode(PATH_SEPARATOR.PATH_SEPARATOR, get_include_path()); |
| <?php | |
| use lang\Throwable; | |
| use util\profiling\Timer; | |
| use rdbms\DriverManager; | |
| use rdbms\ResultSet; | |
| use io\streams\Streams; | |
| use io\streams\TextWriter; | |
| /** |
| diff --git a/Zend/zend_vm_def.h b/Zend/zend_vm_def.h | |
| index 7749197..4309277 100644 | |
| --- a/Zend/zend_vm_def.h | |
| +++ b/Zend/zend_vm_def.h | |
| @@ -2213,11 +2213,48 @@ ZEND_VM_HANDLER(112, ZEND_INIT_METHOD_CALL, TMP|VAR|UNUSED|CV, CONST|TMP|VAR|CV) | |
| object = GET_OP1_OBJ_ZVAL_PTR_DEREF(BP_VAR_R); | |
| if (UNEXPECTED(Z_TYPE_P(object) != IS_OBJECT)) { | |
| + zend_uint nesting = 1; | |
| + |
| diff --git a/NEWS b/NEWS | |
| index c348efe..2f8883b 100644 | |
| --- a/NEWS | |
| +++ b/NEWS | |
| @@ -8,6 +8,8 @@ PHP NEWS | |
| . Update the MIME type list from the one shipped by Apache HTTPD. (Adam) | |
| - Core: | |
| + . Implemented the RFC `Catchable "Call to a member function bar() on a | |
| + non-object"` (Timm) |
| <?php | |
| use util\cmd\Console; | |
| class One extends \lang\Object { | |
| } | |
| class Two extends \lang\Object { |
| <?php | |
| use util\data\Sequence; | |
| class Types extends \lang\Enum { | |
| public static $OPEN, $CLOSED; | |
| } | |
| class Wall extends \lang\Object { | |
| private $name, $type; |
| <?php | |
| use util\data\Sequence; | |
| use lang\Error; | |
| trait Iteration { | |
| public static $extensions= []; | |
| public function __call($name, $args) { | |
| if (isset(Iteration::$extensions[$name])) { |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| use io\collections\FileCollection; | |
| use io\collections\iterate\FilteredIOCollectionIterator; | |
| use io\collections\iterate\ExtensionEqualsFilter; | |
| use util\cmd\Console; | |
| use io\streams\Streams; | |
| class Convert { | |
| const IMPORTS = "<?=imports; ?>\n"; |
| using System; | |
| using System.Collections.Generic; | |
| interface Command | |
| { | |
| int Run(Dictionary<string, string> options, IList<string> arguments); | |
| } |