Skip to content

Commit c679382

Browse files
authored
Merge pull request #38 from MekDrop/remove-priorities-support
Removed support for priority
2 parents 6bfa109 + 3f35008 commit c679382

File tree

2 files changed

+0
-13
lines changed

2 files changed

+0
-13
lines changed

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,6 @@ class DatabaseSetupStep implements SetupStepInterface
4747
// Perform database setup logic
4848
return true;
4949
}
50-
51-
public function getPriority(): int
52-
{
53-
// Return priority (lower numbers = higher priority)
54-
return 10;
55-
}
5650
}
5751
```
5852

src/SetupStepInterface.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,4 @@ public function __construct(?OutputDecorator $output);
2727
* @return bool
2828
*/
2929
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;
3730
}

0 commit comments

Comments
 (0)