I hereby claim:
- I am majkl578 on github.
- I am majkl (https://keybase.io/majkl) on keybase.
- I have a public key ASBoeRpsENPXRp5PvnaxBaoeKzodCPdO3Q5JA5WA1hfT7wo
To claim this, I am signing this object:
| Directory: /tmp/tmp.SMAKC5sSqN | |
| Using PHP 7.0.0alpha2 (cli) (built: Jun 27 2015 22:30:17) (DEBUG) | |
| Copyright (c) 1997-2015 The PHP Group, version: | |
| PHP 7.0.0alpha2 (cli) (built: Jun 27 2015 22:30:17) (DEBUG) | |
| Copyright (c) 1997-2015 The PHP Group | |
| Zend Engine v3.0.0-dev, Copyright (c) 1998-2015 Zend Technologies | |
| Downloading composer... | |
| Composer version 1.0-dev (943107cfe717a74aa791f57b87fa514c88582b0d) 2015-06-26 13:40:26 |
| Starting program: /usr/bin/php -n www/index.php | |
| [Thread debugging using libthread_db enabled] | |
| Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1". | |
| Program received signal SIGSEGV, Segmentation fault. | |
| 0x0000000000c152b9 in zend_hash_index_find_bucket (ht=0x7fffea6fac00, h=0) at Zend/zend_hash.c:464 | |
| 464 idx = HT_HASH_EX(arData, nIndex); | |
| bt: |
| FROM debian:stretch | |
| ENV DEBIAN_FRONTEND noninteractive | |
| # install NGINX | |
| RUN apt-get update && \ | |
| apt-get install -y nginx --no-install-recommends && \ | |
| rm -rf /var/lib/apt/lists/* | |
| From 6aeae9739015071348076dadd6ba8e10aefde007 Mon Sep 17 00:00:00 2001 | |
| From: Michael Moravec <[email protected]> | |
| Date: Fri, 5 May 2017 23:13:43 +0200 | |
| Subject: [PATCH] WIP | |
| --- | |
| src/Broker/Broker.php | 10 ++++++++++ | |
| src/Broker/ClassAutoloadingException.php | 22 +++++++++++++++------- | |
| 2 files changed, 25 insertions(+), 7 deletions(-) |
| <?php | |
| declare(strict_types=1); | |
| use Nette\Security\AuthenticationException; | |
| use Nette\Security\IIdentity; | |
| class CompositeAuthenticator implements CompositeAuthenticatorInterface | |
| { | |
| public const TYPE_KEY = 'type'; |
| 19a20,21 | |
| > declare(strict_types=1); | |
| > | |
| 21a24 | |
| > use Doctrine\Common\EventManager; | |
| 22a26,31 | |
| > use Doctrine\DBAL\Connection; | |
| > use Doctrine\ORM\Cache; | |
| > use Doctrine\ORM\Internal\Hydration\AbstractHydrator; | |
| > use Doctrine\ORM\Proxy\ProxyFactory; |
| DQL: | |
| DELETE FROM Foo f WHERE f.x = true AND NOT f.y IN (1, ?2, :abc, 'z') | |
| HOA AST: | |
| > #QueryLanguage | |
| > > #DeleteStatement | |
| > > > #DeleteClause | |
| > > > > #AbstractSchemaName | |
| > > > > #AliasIdentificationVariable | |
| > > > #WhereClause | |
| > > > > #ConditionalExpression |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| function foo(int ...$prices) | |
| { | |
| assert(count($prices) > 0); | |
| } | |
| $t = microtime(true); | |
| for ($i = 0; $i < 10000000; $i++) { |
| <?php | |
| new class | |
| { | |
| public function __construct() | |
| { | |
| $s = microtime(true); | |
| for ($i = 0; $i < 100000000; $i++) { | |
| (function () {})(); |