<?php

$foto = Conta::obterFotoDePerfil($nomeDeUsuario);
if (!is_null($foto)) {
    echo $foto;
} else {
    echo "NOT_FOUND";
}