You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
static::expectExceptionMessage(sprintf('%s is not configured.', Attribute\DependencyOn::class));
32
+
newAttribute\DependencyOn();
33
+
}
34
+
35
+
publicfunctiontestDependencyOnMultiple(): void
36
+
{
37
+
static::expectException(\LogicException::class);
38
+
static::expectExceptionMessage(sprintf('%s must not have both $dependency and $parent configured. Repeat the attribute to use both.', Attribute\DependencyOn::class));
0 commit comments