| Conditions | 3 | 
| Paths | 4 | 
| Total Lines | 15 | 
| Code Lines | 7 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 17 | public function getVcfString(): string | ||
| 18 |     { | ||
| 19 | $string = Photo::getNode(); | ||
| 20 | |||
| 21 |         if ($this->photo->isExternalUrl()) { | ||
|  | |||
| 22 | $string .= ';VALUE=uri'; | ||
| 23 | } | ||
| 24 | |||
| 25 |         if ($this->photo->isInclude()) { | ||
| 26 | $string .= ';ENCODING=b'; | ||
| 27 | } | ||
| 28 | |||
| 29 | $string .= ':' . $this->getContent(); | ||
| 30 | |||
| 31 | return $string; | ||
| 32 | } | ||
| 43 | 
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.