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
Method::getExampleByType uses $this->body which doesn't exist. It should use $this->bodyList instead.
$this->bodyList contains BodyInterface elements, but unfortunately BodyInterface is rather limited, so it's impossible to check if it has an example without widening the interface.
Since the same thing can be achieved without using this helper method, I suggest this method is removed (or fixed).
The text was updated successfully, but these errors were encountered:
$this->body
which doesn't exist. It should use$this->bodyList
instead.$this->bodyList
containsBodyInterface
elements, but unfortunately BodyInterface is rather limited, so it's impossible to check if it has an example without widening the interface.Since the same thing can be achieved without using this helper method, I suggest this method is removed (or fixed).
The text was updated successfully, but these errors were encountered: