I hereby claim:
- I am dunglas on github.
- I am dunglas (https://keybase.io/dunglas) on keybase.
- I have a public key whose fingerprint is 31D2 33ED 1FBA 7DAF F033 90EE 4D04 EBEF 06AA F3A6
To claim this, I am signing this object:
<?php | |
trait T | |
{ | |
public function __construct() | |
{ | |
echo "Trait contructor"; | |
} | |
} |
<?php | |
<<<CONFIG | |
packages: | |
- "symfony/serializer: ~2.6" | |
CONFIG; | |
use Symfony\Component\Serializer\Serializer; | |
use Symfony\Component\Serializer\Encoder\XmlEncoder; | |
use Symfony\Component\Serializer\Encoder\JsonEncoder; | |
use Symfony\Component\Serializer\Normalizer\GetSetMethodNormalizer; |
<?php | |
<<<CONFIG | |
packages: | |
- "dunglas/php-property-info: dev-master" | |
- "doctrine/orm: ~2.3" | |
- "phpdocumentor/reflection: ~1.0" | |
CONFIG; | |
use Doctrine\ORM\EntityManager; |
public static function generateHash($value, $namespace = '') | |
{ | |
$hash = hash_init('sha256'); | |
$queue = array(array($namespace => $value)); | |
for ($i = 0; isset($queue[$i]); ++$i) { | |
foreach ($queue[$i] as $k => $v) { | |
if (is_object($v)) { | |
hash_update($hash, $k.'=>'.spl_object_hash($v).','; | |
} elseif (is_array($v)) { | |
$queue[] = $v; |
foo: | |
path: /foo/{bar} | |
defaults: { _controller: 'action.Path\To\Your\Action' } |
<?php | |
namespace Acme\ApiPlatform\FOSElastica; | |
use Dunglas\ApiBundle\Api\ResourceInterface; | |
use Dunglas\ApiBundle\Model\DataProviderInterface; | |
use Elastica\Query; | |
use FOS\ElasticaBundle\Finder\PaginatedFinderInterface; | |
use Symfony\Component\HttpFoundation\Request; |
$c = (object) ['@context' => 'foo']; | |
var_dump($c); | |
/* | |
php shell code:1: | |
class stdClass#1 (1) { | |
public $@context => | |
string(3) "foo" | |
} | |
*/ | |
$key = '@context'; |
I hereby claim:
To claim this, I am signing this object:
You are about to deploy the following services: | |
- api-platform-website/default/20161019t000544 (from [/Users/dunglas/workspace/react-redux-universal-hot-example/app.yaml]) | |
Deploying to URL: [https://api-platform-website.appspot.com] | |
Do you want to continue (Y/n)? y | |
If this is your first deployment, this may take a while...done. | |
Beginning deployment of service [default]... | |
WARNING: Deployment of App Engine Flexible Environment apps is currently in Beta |
new MutationObserver(mutation => { | |
for (let lemming of document.querySelectorAll('img[alt="lemming tombant"]')) { | |
lemming.dispatchEvent(new Event('mouseover', { bubbles: true })); | |
} | |
}).observe(document, {childList: true, subtree: true}); |