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.
enableDumpEnumIsMethods
1 parent 9aaf1e8 commit c1edc5dCopy full SHA for c1edc5d
2 files changed
src/Config.php
@@ -351,7 +351,7 @@ public function enableAddUnknownCaseToEnums() : self
351
);
352
}
353
354
- public function dumpEnumIsMethods() : self
+ public function enableDumpEnumIsMethods() : self
355
{
356
return new self(
357
$this->schema,
tests/EnumDumpIsMethods/EnumDumpIsMethodsTest.php
@@ -19,7 +19,7 @@ public function getConfig() : Config
19
20
return parent::getConfig()
21
->enableAddUnknownCaseToEnums()
22
- ->dumpEnumIsMethods()
+ ->enableDumpEnumIsMethods()
23
->withEnumType('Priority', Type::enum(CustomPriority::class));
24
25
0 commit comments