1 | <?php |
||
16 | abstract class AbstractCp extends Component |
||
17 | { |
||
18 | |||
19 | use EnsureSamlPlugin; |
||
20 | |||
21 | /** |
||
22 | * @return AbstractAlterEnvironments |
||
23 | */ |
||
24 | abstract protected function createNewMigration(): AbstractAlterEnvironments; |
||
25 | |||
26 | /** |
||
27 | * @param SettingsInterface $settingsModel |
||
28 | * @return bool |
||
29 | * @throws \Throwable |
||
30 | */ |
||
31 | public function saveSettings(SettingsInterface $settingsModel) |
||
46 | |||
47 | /** |
||
48 | * @return bool |
||
49 | * @throws \Throwable |
||
50 | */ |
||
51 | private function alterEnvironmentsColumn(): bool |
||
61 | } |
||
62 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.