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
is not mentioned in documentation but we are using it, clarify this
For contacts, we use type auteur, we don't use 'planningUnit' neither 'translationUnit': check which one to keep
In EC\Poetry\Messages\Components\ReturnAddress 'WebService' should start with lowercase in (2x) 'expression' => 'this.getType() == "webService"': Check this.
"ReturnAddress()->setRemark" call: Why is it mandatory to call it when we introduce a blank? the blank value cannot be the default value?
Add tests for all tasks above
The text was updated successfully, but these errors were encountered:
ademarco
changed the title
NEPT-1458: Double-check component implementation for inconsistencies:
NEPT-1534: Double-check component implementation for inconsistencies:
Sep 22, 2017
We are removing this temporarily, we will need to better check it:
class Identifier extends AbstractComponent
...
$metadata->addConstraint(new Assert\Expression([
'expression' => 'this.getSequence() || this.getNumber() ',
'message' => 'An identifier must have a number or a sequence.',
]));
$metadata->addConstraint(new Assert\Expression([
'expression' => '(this.getSequence() && this.getNumber()) == false ',
'message' => 'An identifier can\'t have both a number and a sequence.',
]));
In particular:
The text was updated successfully, but these errors were encountered: