16 lines
398 B
PHP
16 lines
398 B
PHP
<?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 (basename($filename, '.php') === 'All') {
|
|
continue;
|
|
}
|
|
include_once $filename;
|
|
}
|