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.
2 parents 6bfa109 + 3f35008 commit c679382Copy full SHA for c679382
README.md
@@ -47,12 +47,6 @@ class DatabaseSetupStep implements SetupStepInterface
47
// Perform database setup logic
48
return true;
49
}
50
-
51
- public function getPriority(): int
52
- {
53
- // Return priority (lower numbers = higher priority)
54
- return 10;
55
- }
56
57
```
58
src/SetupStepInterface.php
@@ -27,11 +27,4 @@ public function __construct(?OutputDecorator $output);
27
* @return bool
28
*/
29
public function execute(InstallableExtensionInterface $extension, array $params): bool;
30
31
- /**
32
- * Get priority to use this step
33
- *
34
- * @return int
35
- */
36
- public function getPriority(): int;
37
0 commit comments