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 7a793c9 commit 50c299fCopy full SHA for 50c299f
src/Generator/Task/DatabaseTypeTask.php
@@ -2,7 +2,6 @@
2
3
namespace IdeHelper\Generator\Task;
4
5
-use Cake\Database\Type;
6
use Cake\Database\TypeFactory;
7
use IdeHelper\Generator\Directive\ExpectedArguments;
8
use IdeHelper\Generator\Directive\Override;
@@ -55,7 +54,7 @@ protected function getTypes(): array {
55
54
$types = [];
56
57
try {
58
- $allTypes = Type::buildAll();
+ $allTypes = TypeFactory::buildAll();
59
} catch (Throwable $exception) {
60
return $types;
61
}
0 commit comments