Skip to content

Instantly share code, notes, and snippets.

@natelenart
natelenart / Entity.php
Created March 7, 2013 18:37
Entity with callable type-hint and generated proxy missing callable type-hint.
<?php
/** @Entity */
class Entity
{
/** @Id @Column(type="integer") @GeneratedValue **/
public $id;
public function setFoo(callable $foo) {}
}