Phalcon\Build\Generator_File_PhalconH::cleanExtern PHP Méthode

cleanExtern() protected méthode

Remove 'extern ' declaration from the source file line
protected cleanExtern ( string $line ) : string
$line string
Résultat string
    protected function cleanExtern($line)
    {
        if (strncmp($line, 'extern ', 7) == 0) {
            $line = substr($line, 7);
        }
        return $line;
    }