<?php

/**
 * Contains all annotations for extensions
 * NOTE: should be included with require_once
 *
 * @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com>
 * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
 */
foreach (glob(__DIR__.'/*.php') as $filename) {
    if ('All' === basename($filename, '.php')) {
        continue;
    }
    include_once $filename;
}
