- Output for 8.0.1 - 8.0.30, 8.1.0 - 8.1.31, 8.2.0 - 8.2.26, 8.3.0 - 8.3.15, 8.4.1 - 8.4.2
- trait
<?php
interface FormStateInterface {}
class FormState implements FormStateInterface {}
class ConfigFormBase {
public function submitForm(array &$form, FormStateInterface $form_state) {
print "original";
}
}
trait ValidatableConfigFormTrait {
public function submitForm(array &$form, FormStateInterface $form_state) {
print "trait";
}
}
class MyForm extends ConfigFormBase {
use ValidatableConfigFormTrait;
}
$form = [];
(new MyForm())->submitForm($form, new FormState());