We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f791606 commit 1a4a659Copy full SHA for 1a4a659
1 file changed
public/index.php
@@ -1,5 +1,6 @@
1
<?php
2
3
+use Doctrine\Common\Annotations\AnnotationReader;
4
use Psr\Container\ContainerInterface;
5
use Yiisoft\Composer\Config\Builder;
6
use Yiisoft\Di\Container;
@@ -21,6 +22,9 @@
21
22
23
require_once dirname(__DIR__) . '/vendor/autoload.php';
24
25
+// Ignore OpenAPI annotations so Cycle ORM works.
26
+AnnotationReader::addGlobalIgnoredNamespace("OA");
27
+
28
Builder::rebuild();
29
30
$startTime = microtime(true);
0 commit comments