Skip to content

Instantly share code, notes, and snippets.

<?php
interface PdfAdapterInterface {
public function combinePdf($pdf1,$pdf2);
}
class foo {
constructor(){
this._listeners = {};
}
addEventLister(event,callback){
if(!this._listeners[event]){
this._listeners[event] = [];
}
this._listeners[event].push(callback);