Skip to content

Instantly share code, notes, and snippets.

@mnapoli
mnapoli / DDC1734Article.php
Created December 3, 2012 08:53
Test for Doctrine Issue DDC-1734
<?php
namespace Doctrine\Tests\Models\DDC1734;
/**
* @Entity
*/
class DDC1734Article
{
@mnapoli
mnapoli / php-hotkey.ahk
Created October 17, 2012 08:46
Autohotkey script for PHP developers on the BÉPO layout
; PHP developer shortcuts for BÉPO keyboard layouts
; Need AutoHotkey_L to support unicode encoding (http://www.autohotkey.com/download/)
; "->" for PHP (when typing <Alt>+8)
!-::
Send ->
return
@mnapoli
mnapoli / reference.yml
Last active September 25, 2025 11:25
Doctrine YAML configuration reference
# Inspired from http://blog.hio.fr/2011/09/17/doctrine2-yaml-mapping-example.html
MyEntity:
type: entity
repositoryClass: MyRepositoryClass
table: my_entity
namedQueries:
all: "SELECT u FROM __CLASS__ u"
# Class-Table-Inheritance
@mnapoli
mnapoli / gist:3752568
Created September 19, 2012 21:57
PHP Dependency Injection
class MyClass {
/**
* @Inject
* @var MyService
*/
private $service;
}