| Total Complexity | 3 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 30 | trait IDNEncodeTrait |
||
| 31 | { |
||
| 32 | /** |
||
| 33 | * @param bool $enabled |
||
| 34 | * @return $this |
||
| 35 | */ |
||
| 36 | public function setIDNEncodingEnabled(bool $enabled) : self |
||
| 37 | { |
||
| 38 | return $this->setEncodingEnabled(Mailcode_Commands_Keywords::TYPE_IDN_ENCODE, $enabled); |
||
|
|
|||
| 39 | } |
||
| 40 | |||
| 41 | public function isIDNEncoded() : bool |
||
| 44 | } |
||
| 45 | |||
| 46 | public function getIDNEncodingToken() : ?Mailcode_Parser_Statement_Tokenizer_Token_Keyword |
||
| 49 | } |
||
| 50 | } |
||
| 51 |
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.