sterntours/vendor/gedmo/doctrine-extensions/lib/Gedmo/Mapping/Annotation/All.php
2020-07-09 12:49:32 +02:00

15 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;
}