123456789101112131415 |
- <?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;
- }
|